blob: ba5716ace3c253fb4df4eebd1128a00287af3237 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
title: References
---
### 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]`.
|