On Sun, Aug 17, 2008 at 11:08 PM, Sean Charles <[EMAIL PROTECTED]> wrote: > What I want to know is: what is the 'list' type and how do I deal with it ?
If I understand correctly you already realised that there is no 'list' data type. You comparison with car/cdr is actually quite correct. However Neko does not have anything called conses, it simply uses two-element arrays instead so [0] is your car and [1] is your cdr. Just like that. Except arrays organised like that when you see 'list' in docs. -- Kacper Gutowski -- Neko : One VM to run them all (http://nekovm.org)
