Skip to content

Variables

C272 edited this page Jun 27, 2019 · 5 revisions

To create a variable, you use the keyword "let". For example:

let b = 3;

To delete a variable, you use the "disregard" keyword. You can disregard a single variable, or all variables at once by using a wildcard (*).

disregard b;
disregard *;

String, Integer, Float, Rational, Boolean, List, Function, EmulatedFunction, Object, Null

Variables can be of the following types:

Type Example Value
String "example"
Integer 1
Float 1.23
Rational 1/23
Boolean true
List [3, 4, 5, 6]
Function ...
EmulatedFunction ...
Object ...
Null null

Standard Library Documentation:

Clone this wiki locally