Hi Alex et al,
Is there a reference implementation of external allocation using
miniPicoLisp?
Here's what I'd like to do - Create a new function called "alloc" that
allocates some memory.
(let A (alloc 100)
(poke A 0 10)) # poke simply writes a byte(10) at offset 0
The part I want to ensu
Hi Kashyap,
> Is there a reference implementation of external allocation using
> miniPicoLisp?
>
> Here's what I'd like to do - Create a new function called "alloc" that
> allocates some memory.
>
> (let A (alloc 100)
> (poke A 0 10)) # poke simply writes a byte(10) at offset 0
I do not k