Skip to content
Matthew edited this page Mar 24, 2015 · 2 revisions

#General All statements in Jet are ended with a semicolon, much like other C style languages.

#Variables By default, all variables are in the global scope and can be set with the '=' operator.

variable = 123;

In order to create a new variable in the local scope prefix the variable name with the local keyword as shown.

local variable = 123;

It is also possible to assign multiple variables at once.

Clone this wiki locally