summaryrefslogtreecommitdiff
blob: aafd0f1bc916e515750340f8ba92d09e0cb3ffd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
title: Addresses
---
### VALUE ACCESS
{{< fatecode >}}(at [ADDRESS]){{< /fatecode >}}

Returns the variable at `[ADDRESS]`.

### ALLOCATION
{{< fatecode >}}(new [TYPE]){{< /fatecode >}}

Returns the address of a new variable of type `[TYPE]`. Don't forget to call
`free` on it once you're done.

### ADDRESS
{{< fatecode >}}(ptr [COMPUTATION VARIABLE]){{< /fatecode >}}

Returns the address of `[COMPUTATION VARIABLE]`.