Built-in Functions
Built-in Functions are described as "the ones that work without #including anything"
So they don't need you to #incd anything.
Input/Output Functions
// con.out{} Stands for 'Console.Output'
// Used to output text and/or variables into the console.
// Syntax (spaced): con.out{ << <dataToOutput> };
con.out{<< "Hello World!"}; // Output: Hello World!
// It can also be used for mathematical operations
con.out{<< 1 + 1}; // Output: 2// con.read{} Stands for 'Console.Read'
// Used to read user's input and store it into a variable
// Syntax (spaced): con.read{ >> <variableName> };
con.out{<< "Did you eat the dog? "};
str exampleString;
con.read{>> exampleString};Error Handling Functions
Last updated
Was this helpful?