newLISP Fan Club

Forum => Anything else we might add? => Topic started by: ssqq on July 05, 2016, 09:31:17 PM

Title: functor name error [a..e]
Post by: ssqq on July 05, 2016, 09:31:17 PM

> (define a:a)
ERR: context expected in function define : a
> (define b:b)
ERR: context expected in function define : b
> (define c:c)
ERR: context expected in function define : c
> (define d:d)
ERR: context expected in function define : d
> (define e:e)
ERR: context expected in function define : e
> (define f:f)
nil
Title: Re: functor name error [a..e]
Post by: TedWalther on July 08, 2016, 01:09:52 AM
Try (define (a:a)) instead of (define a:a) if you want to define the default functor; the functor is a function.  If you truly want to define a:a (not the default functor), then... yes, what is the right result.



By the way, I get this result:



newLISP v.10.6.2 64-bit on Linux IPv4/6 UTF-8 libffi, options: newlisp -h

> (define a:a)
nil
> a
a
> (context? a)
true
>
Title: Re: functor name error [a..e]
Post by: ssqq on July 08, 2016, 06:12:35 AM
thanks, I get it use 10.6.0, I would try it use 10.7.0.



when I use 10.7.0 it is ok.