| ABS | ABS(X) Returns the absolute value of X.
|
| ASC | ASC(X$) Returns the unicode value of the first character of X.
|
| CHR | CHR$(X) Returns a character of ASCII X.
|
| COS | COS(X) Returns the cosine of X in radians.
|
| EXP | EXP(X) Returns e to the power of X.
|
| INT | INT(X) Returns the largest integer <= X.
|
| LEFT | LEFT$(A$,X) Returns the leftmost X characters of A$.
|
| LEN | LEN(X$) Returns the number of characters in X$.
|
| MID | MID$(A$,X,[Y]) Returns a portion of A$.
|
| RIGHT | RIGHT$(A$,X) Returns the rightmost X characters of A$.
|
| RND | RND(X) Returns a pseudo-random number.
|
| SGN | SGN(X) Returns the sign of X.
|
| SIN | SIN(X) Returns the sine of X in radians.
|
| SQR | SIN(X) Returns the square root of X.
|
| STR | STR$(X) Returns the number X as a string.
|
| TAB | TAB(X) Returns a string of spaces.
|
| VAL | VAL(X$) Returns a number parsed from string X$.
|