> I don't remember. It was either because they were useless or confusing or intellectually inelegant.
Having experienced first-class macros in my own Lisp implementation, I'm inclined to agree. Though there are various promises of efficient implementations scattered through the internet, nobody actually goes into enough detail to explain it. Non-first-class macros are the way to go for efficiency, at least, and first-class macros themselves are fairly useless.
in takes any number of arguments, and returns whether the first argument is repeated in the rest of them:
arc> (in 2 1 2 3)
t
arc> (in 0 1 2 3)
nil
Ok, let's say I have a list, and I want to find out whether something is in it: arc> (apply in 2 (list 1 2 3))
Error: "Function call on inappropriate object #(tagged mac #<procedure: in>) (0 1 2 3)"
Oh dear. That's not right.The solution, at least in Arc, is to use mem:
arc> (mem 2 (list 1 2 3))
(2 3)
It returns the first sub-list of its second argument such that the car of the returned list is the element searched for -- or 'nil if the element isn't in the list. So yes, you can make it work, in this case. But it's surely more confusing than having (apply in 2 (list 1 2 3)) work. (mac foo(a b) `(cons ,a ,b))
(apply foo '(1 (2 3)))
=> (cons 1 (2 3))
=> error: 2 is not a function
Further discussion (more than you could ever want):
http://arclanguage.org/item?id=15659; http://arclanguage.org/item?id=15907Basically you'd have to:
1. eval the list
2. cons the macro to the list, eval to yield the macroexpansion
3. implicitly eval the macroexpansion -- but not eval the elements of the spliced in list because they've already been eval'd once.
Step 3 throws a spanner in the works.
So you might say, fine, let's quote all the elements of the spliced in list. And that'll seem to work for the previous example, but you'll eventually run into an example like this:
(apply = '(x 3))
=> (= 'x '3)
=> error: can't assign to (quote x)
So you have to perform step 3 without actually inserting a literal quote. I gave up at this point.I've started implementing a Lisp interpreter in C# and I also was going along the path of making everything "first class" by using f-expressions where appropriate. So far my only actual f-expressions are "lambda" and "if" - everything else is bootstrapped as macros or functions.
My "apply" currently expects a function but I was toying with making it "eval" the cons macro... but then "apply" has to become an f-expression instead of just a plain normal function which seemed inelegant so I left it as a function that requires a function.
Reading your story... I think I'll leave it permanently side-stepped!! :-)
Actually you can, for example:
(assign macro-maker
(fn (x)
(annotate 'mac (fn (y) `(cons ,x ',y)))))
(assign m1 (macro-maker 1))
(disp (m1 a)) ; print (1 . a)
(macex '(m1 3)) ; print (cons 1 (quote a))
Above code are tested in tryarc.org.> Non-first-class macros are the way to go for efficiency, at least, and first-class macros themselves are fairly useless.
It's true that non-first-class macros can be more efficiency. But first class macros can benefit from it's nature - a lexical function with environment. Construct such macros can be fancy.
That is, it's easier to implement first-class macros (which allow hygiene) in an intepreter , than it is to implement scheme-style non-first-class hygienic macros...
I only say this because I know how to implement first-class macros, but I don't really understand how Scheme's hygienic macros work...