Basic Values
Here are all the values supported by Luna:
| name | description |
|---|---|
| null | no value |
| int | signed integer number (64 bits) |
| float | floating-point number (64 bits) |
| bool | boolean value (true/flase) |
| char | single byte as a character |
| string | a string of characters (vector of bytes) |
| vector | dynamic array of values |
| object | string-value pair map |
| fn | function |
| user-object | externally defined object (in Rust) |