Syntax

Structure

Variables

var name = variable;

String

var foo = "string"

Conditions

Operators have natural language and symbolic options.

==    !=        and     or
is    is not    and     or

Function definition

func funcName(params) : returnType
{

}

Collection

Not implemented yet

Comments

Comments are multiline by default. Everything between // and ; is treated as a comment.

Control Flow Statements

Conditions

Using an operator from: ==, !=, <, <=, >, >=. Double statements using and and or

If Statements

For Loop

While Loop

Functions

Importing extern functions

Last updated