Re: miniPicoLisp cons(Nil, Nil);

2020-05-02 Thread C K Kashyap
Oh yes thanks Alex, Regards, Kashyap On Sat, May 2, 2020 at 7:10 AM Alexander Burger wrote: > Hi Kashyap, > > > Could you please tell me why we have the cons(Nil, Nil); in gen3m.c right > > after insert(&Intern, "NIL", romSym("NIL", "(Rom+1)")); ? > > This allocates a dummy cell, required by

Re: miniPicoLisp cons(Nil, Nil);

2020-05-02 Thread Alexander Burger
Hi Kashyap, > Could you please tell me why we have the cons(Nil, Nil); in gen3m.c right > after insert(&Intern, "NIL", romSym("NIL", "(Rom+1)")); ? This allocates a dummy cell, required by 'NIL'. From doc/structures you see NIL: / | V +-+-+-+-

miniPicoLisp cons(Nil, Nil);

2020-05-01 Thread C K Kashyap
Hi Alex, Could you please tell me why we have the cons(Nil, Nil); in gen3m.c right after insert(&Intern, "NIL", romSym("NIL", "(Rom+1)")); ? Regards, Kashyap