Specifications

Commands - 91
A = 1234.67
PRINT USING "#.##ˆˆˆˆ";A
0.12E+4
In this case the first # specifies the leading zero to the left of the decimal point.
PRINT USING "##.##ˆˆˆˆ;A
1.23E+3
Leading zeros to the left of the first digit to the left of the decimal point are suppressed.
A = 25.5555
PRINT USING #2, "##.##";A
25.56
Note that true rounding to the second decimal place took place. Output is to the COM2 port.
ERROR: <Illegal argument> – if the field specifier, “#”, is longer than 8 characters
<Data out of range> – if n is not a legal serial port number
NOTE: Illegal combinations of field declaration characters may cause erratic printing.