-
Notifications
You must be signed in to change notification settings - Fork 3
Syntax
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.