// Ripped by Grimdoomer ///////////////////////////////////////////////////////////////// // Name: 3 2 begin // Format: // Misc: // Description: returns the last expression in a sequence after evaluating the sequence in order. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 3 2 begin_random // Format: // Misc: // Description: evaluates the sequence of expressions in random order and returns the last value evaluated. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 3 2 if // Format: [] // Misc: // Description: returns one of two values based on the value of a condition. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 3 2 cond // Format: ( ) [( ) [...]] // Misc: // Description: returns the value associated with the first true condition. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 3 2 set // Format: // Misc: // Description: set the value of a global variable. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 5 2 and // Format: // Misc: // Description: returns true if all specified expressions are true. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 5 2 or // Format: // Misc: // Description: returns true if any specified expressions are true. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 6 2 + // Format: // Misc: // Description: returns the sum of all specified expressions. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 6 2 - // Format: // Misc: // Description: returns the difference of two expressions. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 6 2 * // Format: // Misc: // Description: returns the product of all specified expressions. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 6 2 / // Format: // Misc: // Description: returns the quotient of two expressions. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 6 2 min // Format: // Misc: // Description: returns the minimum of all specified expressions. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 6 2 max // Format: // Misc: // Description: returns the maximum of all specified expressions. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 5 2 = // Format: // Misc: // Description: returns true if two expressions are equal ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 5 2 != // Format: // Misc: // Description: returns true if two expressions are not equal ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 5 2 > // Format: // Misc: // Description: returns true if the first number is larger than the second. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 5 2 < // Format: // Misc: // Description: returns true if the first number is smaller than the second. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 5 2 >= // Format: // Misc: // Description: returns true if the first number is larger than or equal to the second. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 5 2 <= // Format: // Misc: // Description: returns true if the first number is smaller than or equal to the second. ///////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////// // Name: 4 2 sleep // Format: [