>>> Hello >>> >>> I am not able to work with list: whre can i find documentation on >>> list selectors? >> >> There are no lists in Neko, only arrays. >> You can encode lists by using arrays just like a linked list in C : >> >> $array(1,$array(2,$array(3,null))) > > I was wondering about this earlier because the idea of a Neko based Lisp > is quite entertaining. Is this as memory efficient as 2 pointers per > cons cell?
Almost. +1 word for neko header +1 bit for GC block handling. Nicolas -- Neko : One VM to run them all (http://nekovm.org)
