PicoLisp Wiki: The core language of PicoLisp

2010-10-11 Thread Jon Kleiser
Hi, In the not yet completed Wiki article The core language of PicoLisp http://picolisp.com/5000/-2-1L.html, there's a paragraph Declaring variables where I read (re. 'let') that The values are not bound to the variables until execution of the prg has begun, so this excludes using v1 to set

Re: PicoLisp Wiki: The core language of PicoLisp

2010-10-11 Thread Alexander Burger
Hi Jon, The values are not bound to the variables until execution of the prg has begun, so this excludes using v1 to set the value of v2 as in this example: This must be plain wrong, and that probably explains why the example is still missing. This is my counterexample: : (let (X 3 Y