PRINTT
PRINTV
PRINTF


These three instructions type text and values to stdout. Useful for debugging macros or wherever you may feel the need to tell yourself some important information.

PRINTT    "I'm the greatest programmer in the whole wide world\n"

PRINTV    (2+3)/5

PRINTF    MUL(3.14,3987.0)
PRINTT prints out a string
PRINTV prints out an integer value or, as in the example, the result of a calculation. Unsurprisingly you can also print out a constant symbols value
PRINTF prints out a fixed point value.

See also:



Last updated 21 June 1997 by Carsten Sorensen