- Types & Literals
struses double quotes "like this"decmatches decimal numbersintmatches integer numbers
- Arrithmetic operations
*multiplies dec and int/divides dec and int+adds dec and int, concatenates with str and any-subtracts dec and int
- Builtin Functions
WRITEwill output its parameters as space separated values to stdoutWRITELNwill output its parameters as space separated values to stdout and add the native line terminator
- Comments
// ...creates a line comment/* ... */creates a block comment