fa/doc/md/BOOLEANS.md
Ari Archer b1ea0e0ef3
Add type keywords, booleans and null, preparing for type checker
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-07-14 19:59:39 +03:00

12 lines
262 B
Markdown

# Fa booleans
Fa booleans push a token of type `bul` on the stack,
they really just compile to `push <0|1>` depending if a
boolean is truthy or not
They're invoked like this:
```fa
true -- Will push 1 onto the stack
false -- Will push 0 onto the stack
```