| The call is: | EXIT | 
| The call is: | HELP | 
| INCLUDE | 'file[.gcl]' | 
Additional notes:
| The call is: | LIST [option] [v1, v2, ..., vn] | 
| option | can have the values -s and -u. If -s is used, only system variables are listed, if -u is used, only user-defined variables are listed. | 
| v1, v2, .., vn | are the names of variables. If no variables are specified, all defined variables are listed. | 
| The call is: | FREE v1, v2, ..., vn | 
| v1, v2, .., vn | are the names of variables. | 
| The call is: | PRINT expr1, expr2, ..., exprn | 
| expr1, expr2, .., exprn | are expressions. | 
| The call is: | LOGON cfil | 
| cfil | is a string containing a filename. | 
Additional notes:
| The call is: | FLOAT list | 
| list | is a list of arrays with dimension specifications separated by commas. | 
| Example: | FLOAT A[10], B[5,10] creates an array A with 10 elements and a matrix B with 5 rows and 10 columns. |