- Types & Literals
str
uses double quotes "like this"dec
matches decimal numbersint
matches 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
WRITE
will output its parameters as space separated values to stdoutWRITELN
will output its parameters as space separated values to stdout and add the native line terminator
- Comments
// ...
creates a line comment/* ... */
creates a block comment