basic/doc/statements/print.rs
1/*!
2# `PRINT [<list of expressions>]`
3
4## Purpose
5Output information to the terminal for the operator.
6
7## Remarks
8A `PRINT` by itself outputs a newline (ASCII 10).
9To suppress the newline, use a semicolon (;) at the end.
10Separating expressions with nothing or a semicolon (;) will print them with nothing between.
11Output is divided into zones of 14 characters. A comma will advance to the start of next zone.
12
13## Example
14```text
15PRINT ,"Mar","Apr":?"Bought",100,120:?"Sold",-97,-123
16 Mar Apr
17Bought 100 120
18Sold -97 -123
19```
20
21*/