Addresses

ALLOCATION

(allocate! [POINTER REFERENCE])

Set [POINTER REFERENCE] to the address of a new memory location of type [TYPE]. Don’t forget to call free on it once you’re done.

DE-ALLOCATION

(free! [POINTER])

Removes the memory element at [POINTER] from the memory.