Subscribe

2015-09-05 Thread Maxim Dolgushin

(eval X 1) not behaving as expected

2015-09-05 Thread Maxim Dolgushin
(let (a 500) (let (a 100) (up a))) # -> 500 (let (a 500) (let (a 100) (eval a 1))) # -> 100 (let (a 500) (let (a 100) (eval 'a 1))) # -> NIL I would like to know if evaluating whole expressions (as opposed to one value for 'up) in upper context is possible with picolisp.