Syntax
Overall syntax
Comprimisses of v1.0:
Variables
let a = 1;
# => 1
let b = 2;
# => 2
let c = a + b;
# => 3
# You can redefine variables
a = "other value";
# => "other value"Allowed variable names
Numbers
Mathematical Operations and Elementary Functions
Strings
Functions
Control Flow
Types?
Data Structures (better name)
Modules
Last updated