| := | Index Level | < |
| Syntax | statement {; statement...} |
| Category | BASIC |
| Type | Reserved Character |
| Description |
separates multiple FlashBASIC statements on a single line.
D3 allows a FlashBASIC statement to end with a semi-colon because it allows "null" or blank lines in a program. R83 does not provide this feature. |
| Options | |
| See Also | special characters |
| Example |
x = 10 ; y = 15 ; z = x * y ; crt z
This shows multiple statements on a single line. for i=1 to 9; crt field(s,' ',i); next i This shows a "for-next" loop on the same line. |
| Warnings | Multiple complex statements on a single line can be difficult to read. |
| Compatibility | D3 7.0 AP R83 |
| := | Index Level | < |