 
      
      mathThis module provides mathematical and random number generator functions
import math
 
y = sin(30)        ' Calculates sine of 30 (in radians)
writeln(math_pi)   ' Prints mathematical π constant
abs() — Get absolute value of xacos() — Calculate inverse cosine of x, expressed in radiansacosd() — Calculate inverse cosine of x, expressed in degreesacosh() — Calculate inverse hyperbolic cosine of xasin() — Calculate inverse sine of x, expressed in radiansasind() — Calculate inverse sine of x, expressed in degreesasinh() — Calculate inverse hyperbolic sine of xatan() — Calculate inverse tangent of x, expressed in radiansatand() — Calculate inverse tangent of x, expressed in degreesatanh() — Calculate inverse hyperbolic tangent of xceil() — Round x upwardcos() — Calculate cosine of x in radianscosd() — Calculate cosine of x in degreescosh() — Calculate hyperbolic cosine of xexp() — Calculate base-e exponential function of x. exp(x) = exfloor() — Round x downwardgetnumber() — Convert value to a numberint() — Convert x to integer valueln() — Calculate natural logarithm (base-e) of xlog() — Calculate base-10 logarithm of xlogn() — Calculate base-n logarithm of xrandom() — Get random value between min and maxrandomint() — Get random integer value between min and maxround() — Round x to specified precisionsign() — Get sign of a numbersin() — Calculate sine of x in radianssind() — Calculate sine of x in degreessinh() — Calculate hyperbolic sine of xsqrt() — Calculate square root of xtan() — Calculate tangent of x in radianstand() — Calculate tangent of x in degreestanh() — Calculate hyperbolic tangent of xThere are no classes.