PickBASIC / FlashBASIC
crt statement
.mdThe crt statement outputs unconditionally to the terminal display, regardless of whether or not the printer on condition is in effect.
Synonymsdisplay
Syntax
crt {exp{,exp..}{:}
Parameter(s)
| exp | Expression to be output unconditionally to the terminal display. |
Description
This functions like the print statement, but is not affected by:
- The p option used with the run command at TCL.
- The printer on statement.
- A heading, footing, or page statement.
All of the @() functions provided with the print statement are allowed.
When expressions are separated by commas, the next expression is output starting at the column position defined by the next output tab.
A colon at the end inhibits the output of a CR/LF following the output of the last printed line.
Note: To generate backwards compatible
object code, execute the set-compiler (ap command
prior to compiling.
Example(s)
See also
Referenced by
3 topics mention crt statement in its description.