summaryrefslogtreecommitdiff
blob: cf5143b20e7644264ce42e0240094ed9deae7c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
title: Addresses
---
### ALLOCATION
{{< fatecode >}}(allocate! [POINTER REFERENCE]){{< /fatecode >}}

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
{{< fatecode >}}(free! [POINTER]){{< /fatecode >}}

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