10 lines
196 B
Markdown
10 lines
196 B
Markdown
# Null in fa
|
|
|
|
It's a pointer to no address, it compiles down to `push 0`,
|
|
it only has a seperate type for better type checking
|
|
|
|
It's invoked like this:
|
|
|
|
```fa
|
|
null -- Pushes 0 onto the stack
|
|
```
|