Primitive Values
There are a few primitives to choose from:
bool
is an 8-bit value representing eithertrue
orfalse
.- Encoded as
1
if true, and as0
if false.
- Encoded as
byte
is an 8-bit value representing an unsigned number between 0 and 255.- Encoded as-is
i32
is a 32-bit signed integer number container.- Encoded as-is
f32
is a 32-bit signed floating-point number container.- Encoded as-is
string
is a variable-length string of ASCII characters.- A string of characters followed by a
\0
terminal character.
- A string of characters followed by a