newLISP v7.3.8 Copyright (c) 2003 Lutz Mueller. All rights reserved.
> (set (symbol "var") 345)
345
> (symbol? var)
nil
>
Why does it return nil?
the function 'symbol?' evaluates its argument first, the contents of var was not a symbol but 345:
(set 'x 'var) = > var
(symbol? x) => true ;; checks the contents of x which is the symbol var
(symbol? (first '(var x y z))) => true
etc.
Lutz
Oops, thanks for the explanation.
(set 'var any-thing)
(symbol? any-thing) => true
The doc is not that clear.
the doc is wrong ;-)
I'll correct this
Lutz