Beta 1.0
Pre-releaseBuilt-in Functions
upper text TEXT → Converts text to uppercase.
lower text TEXT → Converts text to lowercase.
concat text TEXT1, text TEXT2, ... → Concatenates multiple text values.
pow BASE, EXPONENT → Raises a number to a power.
len TEXT/VARIABLE → Returns the length of a text.
type VALUE → Returns the type of a value.
int VALUE → Converts a value to an integer.
float VALUE → Converts a value to a float.
str VALUE → Converts a value to a string.
list VALUE → Converts a value to a list.
tuple VALUE → Converts a value to a tuple.
dict VALUE → Converts a value to a dictionary.
set VALUE → Converts a value to a set.
abs NUMBER → Returns the absolute value of a number.
max VALUE1, VALUE2, ... → Returns the maximum value from a list.
min VALUE1, VALUE2, ... → Returns the minimum value from a list.
round VALUE → Rounds a number.
sum LIST/ITERABLE → Returns the sum of all numbers in a list.
range START, STOP → Generates a range of numbers.
enumerate LIST/ITERABLE → Returns an enumerated object.
help FUNCTION → Displays help for a function.
dir OBJECT → Lists available attributes for an object.
Random Functions
random number MIN to MAX → Generates a random integer between MIN and MAX.
random text OPTION1, OPTION2, ... → Chooses a random text from given options.
random boolean → Returns a random boolean (True/False).
Storage (Variable Declaration and Assignment)
storage number NAME = VALUE → Stores an integer in a variable.
storage float NAME = VALUE → Stores a floating-point number.
storage text NAME = text VALUE → Stores a text (string).
storage boolean NAME = true/false → Stores a boolean value.
Control Flow Statements
if CONDITION is true: → Executes code block if the condition is true.
if CONDITION is false: → Executes code block if the condition is false.
while CONDITION do → Executes a loop while the condition is true.
for START to END do → Loops from START to END.
Program Execution
print VALUE/EXPRESSION → Prints a value or expression.
end program → Terminates the program execution.