PickBASIC / FlashBASIC

* statement

.md

The * (asterisk) statement is used as a remark. Text after this statement is ignored.

Synonyms!rem

Syntax

* comments

Example(s)

This example illustrates using the * statement to add remarks or comments.

*
* Init Customer Counter
*
  customer.count = 0
*
* Open Customer File
*
  open...

See also