L = long register, D = double register, S = string variable
register names
#setreg_l L, name;
#setreg_d D, name;
example:
#setreg_l L0, x; assign name "x" to register "L0"
push_i 5, x;
include
#include <filename> includes the file to the program
line parser
#setquote S; change quote to string
#setsepar S; change separator to string
#setsemicol S; change semicolon to string
The default parser settings are:
a string is surrounded by a double quote: "
opcode arguments are separated by a comma: ,
example:
#setquote ';
#setsepar |;
print_s '"foo", "bar"';
print_n L0;
mul_l L1 | L2 | L3;
Prev: Stack | Next: Arguments
|