newLISP Fan Club

Forum => Anything else we might add? => Topic started by: ssqq on June 11, 2014, 08:33:44 PM

Title: load default functor Token-char:Token-char failed.
Post by: ssqq on June 11, 2014, 08:33:44 PM
I meet a strange problem:



When I load the module with content below:


(define Token-char:Token-char)

(Token-char "key" 123)


REPL output:


QuoteERR: context expected in function define : Token-char


When I use other context name like:

(define Token:Token)

(Token "key" 123)


That is ok.



If have any reserved context name in newLISP?
Title: Re: load default functor Token-char:Token-char failed.
Post by: Lutz on June 12, 2014, 06:44:30 AM
Most likely Token-char was used before as a simple variable / symbols in the same newLISP session. Then when creating the defaut functor with (define Token-char:Token-char) the error is thrown. The error message protects you against programming errors.



Only the context function can convert normal symbols to context symbols. But if trying to use the context symbols after that as a normal variable you would get an error that the symbol is protected.



To see any symbols already defined execute symbols. As it is good programming practice to start context names with an upper-case letter, they will be high up in the list, preceded by system owned symbols starting with $. More about these here: http://www.newlisp.org/downloads/newlisp_manual.html#system_symbols
Title: Re: load default functor Token-char:Token-char failed.
Post by: rickyboy on June 12, 2014, 07:31:24 AM
Quote from: "Lutz"Most likely Token-char was used before as a simple variable / symbols in the same newLISP session.

Yes, because if you try doing this in a clean session, you'll get no errors.


~ $ newlisp
newLISP v.10.5.8 32-bit on Win32 IPv4/6 libffi, options: newlisp -h

> (define Token-char:Token-char)
nil
> (Token-char "key" 123)
123
>