newLISP Fan Club

Forum => Anything else we might add? => Topic started by: ssqq on July 13, 2014, 11:15:42 AM

Title: array literals
Post by: ssqq on July 13, 2014, 11:15:42 AM
I think newLISP should add syntax of "array literals", but [..] have been used by symbol.



without "array literals", a list with elements need evaluted is as following:


 (set 'str-quote (char 34))
(set lst (list str-quote (list str-quote)))


If add [..] as array literal:


(set 'arr [str-quote [str-quote]])

It is more concisely.