newLISP Fan Club

Forum => Anything else we might add? => Topic started by: steloflute on January 10, 2016, 08:56:08 PM

Title: Strange reader
Post by: steloflute on January 10, 2016, 08:56:08 PM
I think special processing for lambda and fn is done too early. The reader should preserve the symbols as is.


> 'lambda

ERR: invalid lambda expression : "lambda"
> 'fn

ERR: invalid lambda expression : "fn"
> 'a
a
> (quote lambda)

ERR: invalid lambda expression : " lambda)"
> (fn (x) x)
(lambda (x) x)
> '(fn (x) x)
(lambda (x) x)
> (legal? "fn")
true
> (legal? "lambda")
true
> (sym "fn")
fn
Title: Re: Strange reader
Post by: ssqq on July 05, 2016, 09:35:04 PM
I think this is a bug.



symbol table should permit "fn" or "lambda" as name.
Title: Re: Strange reader
Post by: TedWalther on July 07, 2016, 02:18:04 AM
This didn't work either, surprised me:


Quote
> (define λ fn)



ERR: invalid lambda expression : " fn)"

> (define λ 'fn)



ERR: invalid lambda expression : "fn)"

> (set 'λ 'fn)



ERR: invalid lambda expression : "fn)"

> (constant 'λ 'fn)



ERR: invalid lambda expression : "fn)"

> (constant 'λ fn)



ERR: invalid lambda expression : " fn)"
Title: Re: Strange reader
Post by: Lutz on July 07, 2016, 10:49:48 AM
The keywords lambda, lambda-macro, fn and fn-macro are resolved / translated at a very early stage of the source reading process for speed efficiency reasons. Think of them as being built-in and not re-definable similar to parentheses and quotes, they are part of the syntax.



These keywords translate into a parenthesized-expression attribute. A parenthesized expression is then lambda-executable or lambda-list. As a minimum, you have to include it in parentheses:



> (lambda)
(lambda )
> (lambda-macro)
(lambda-macro )
>


This is also the reason that these keywords are not counted as normal symbols:

> (length (lambda))
0
>


The lambda keyword makes a lambda-list out of a normal list.
Title: Re: Strange reader
Post by: steloflute on August 31, 2016, 01:50:28 AM
Hi, Lutz.



Speed efficiency for read? or for eval? If it is for read, then I agree. But if it it not, I suggest putting preprocessing stage between read and eval stages. Then the symbols lambda, lambda-macro, fn and fn-macro can be used in a user land.
Title: Re: Strange reader
Post by: ssqq on September 02, 2016, 09:00:57 PM
Now follow expr is ok:



> (sym "fn")
fn
> (sym "lambda")
lambda
> (sym "lambda-macro")
lambda-macro

> (lambda? (cons (sym "fn")))
nil
;; but get lambda exprssion in dynamically is not ok
> (lambda? (eval (cons (sym "fn"))))
ERR: invalid function : (fn)