-
Notifications
You must be signed in to change notification settings - Fork 1
Standard Library
The standard library contains a lot of useful functions and global variables.
The command line arguments provided to the script.
Returns the absolute of the input.
Returns the absolute of input.
Prints the current internal environment of the interpreter to stdout. This is useful for debugging the interpreter.
Exits the program and interpreter with exitcode 0
.
Exits the program and interpreter with the exitcode specified.
Reads a line from stdin.
If it succeeds the read line will be in the first string and the second one will be nil
.
On error the first one will be nil
and the second one will contain the reason of failure.
Returns the bigger input.
Returns the bigger input.
Returns the smaller input.
Returns the smaller input.
Returns the smaller input.
Returns the smaller input.
Prints the object without a newline to stdout.
(AnyType
is not an actual type but an internal the interpreter uses, so that it can work with any class.)
Prints the object with a newline to stdout.
(AnyType
is not an actual type but an internal the interpreter uses, so that it can work with any class.)
Returns a list starting at 0 up to but not including the input.
Returns a list starting at the first input up to but not including the second input.