How do I find out whether a symbol is an existing (built-in) newLISP symbol:
(find rubbish (symbols))
;-> 204
It looks like the symbol is created first, then found.
'sym' with optionl 'nil' parameter suppresses creation and only checks existence:
> (sym "rubbish" MAIN nil)
nil
> (sym "println" MAIN nil)
println
>
see also http://newlisp.org/downloads/newlisp_manual.html#sym
Lutz
Thanks - that's the one!