Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Conditionals

Currently if/if else/else statements are supported. Expressions must be surrounded by parenthesis and return a boolean type.

if (<expression_one>) {
	io.writeln("Do Something");
} else if (<expression_two>) {
	io.writeln("Do Something Else");
} else {
	io.writeln("Neither Condition Was Met");
}

You can chain as many else if’s as you want.