foolsInfo |
Outputs information about the language |
foolsStructure |
Outputs the basic structure for a project |
foolsOperators |
Outputs the basic operators for the language |
foolsOperatorsBool |
Outputs the basic boolean operators for the language |
foolsEqual |
Outputs the equality operator for the language |
foolsNotEqual |
Outputs the not equal operator for the language |
foolsEntry |
Creates a main entry point |
foolsTypeCheck |
Outputs the basic syntax for type checking |
foolsTypeCompare |
Outputs the basic syntax for type comparison |
foolsTypeConvert |
Outputs the basic syntax for type conversion |
foolsTypes |
The language's data types |
foolsTypesString |
The language's string data type |
foolsTypesInt |
The language's integer data type |
foolsTypesNum |
The language's numerical data type |
foolsTypesBool |
The language's boolean data type |
foolsTypesBoolTrue |
The language's value for true |
foolsTypesBoolFalse |
The language's value for false |
foolsTypesDate |
The language's Date data type |
foolsTypesList |
The language's list data type |
foolsTypesMap |
The language's map data type |
foolsTypesDynamic |
The language's dynamic data type |
foolsTypesNull |
The language's nullable data type |
foolsNow |
How the language represents the current time |
foolsVar |
Creates a variable |
foolsVarSyntax |
Outputs the basic syntax for a variable |
foolsVarTyped |
Creates a statically typed variable |
foolsVarNullable |
Creates a nullable variable |
foolsVarString |
Creates a string variable |
foolsVarStringMulti |
Creates a multi-line string variable |
foolsVarNum |
Creates a number variable |
foolsVarBool |
Creates a boolean variable |
foolsVarDate |
Creates a date variable |
foolsVarList |
Creates a list variable |
foolsVarMap |
Creates a map variable |
foolsConst |
Creates a constant variable |
foolsVarStatic |
Creates a static variable |
foolsGenMap |
Generates a map/dictionary with a specific number of key/value pairs |
foolsGenList |
Generates a list/array of a specific length |
foolsPrint |
Creates a print/log statement |
foolsPrintMulti |
Creates a multi-line print/log statement |
foolsInterpolate |
Interpolates a string |
foolsConcat |
Concatenates a string |
foolsForLoop |
Creates a for loop |
foolsForIn |
Creates a for-in/of loop |
foolsWhileLoop |
Creates a while loop |
foolsSwitch |
Creates a switch stament with default |
foolsFunc |
Creates a function |
foolsFuncArgs |
Creates a function with arguments |
foolsFuncArgsNamed |
Creates a function with named arguments |
foolsFuncArrow |
Creates an arrow function |
foolsFuncAnon |
Creates an anonymous function |
foolsFuncLambda |
Creates a lambda function |
foolsFuncSyntax |
Outputs the basic syntax for a function |
foolsComment |
Creates a single-line comment |
foolsCommentMulti |
Creates a multi-line comment |
foolsThrow |
Throws an exception |
foolsTryCatch |
Creates a try-catch block |
foolsIf |
Creates an if statement |
foolsIfElse |
Creates an if-else statement |
foolsTernary |
Creates a ternary statement |