statement/PUDEF statement/PUDEF NAME PUDEF -- Redefines PRINT USING symbols ABBREVIATION p <shift> U SYNOPSIS PUDEF "<definition>" FUNCTION PUDEF lets you redefine up to 4 symbols in the PRINT USING statement. You can change blanks, commas, decimals points, and dollar signs into some other character by placing the new character in the correct position in the PUDEF control string. Position 1 is the filler character. The default is a blank. Place a new character here when you want another chacter to appear in place of blanks. Position 2 is the comma character. Default is a comma. Position 3 is the decimal point. Position 4 is the dollar sign. INPUTS <definition> - definition string for symbols (from left to right): the first character defines a filler character, the second character defines a comma, the third character defines a decimal point, and the fourth character defines a dollar sign RESULT Redefines four PRINT USIGN symbols: a filler character, a comma, a decimal point, and a dollar sign. EXAMPLES 10 PUDEF "*" Prints * in the place of blanks. 20 PUDEF " &" Prints & in the place of commas. 30 PUDEF " .," Prints decimal points in the place of commas, and commas in the place of decimal points. 40 PUDEF " .,£" Prints English pound sign in the place of $, decimal points in the place of commas, and commas in place of decimal points. NOTES None BUGS None SEE ALSO PRINT USING