Michael Chuprin
Michael Chuprin

Reputation: 31

How do to block comments in Liberty Basic?

Each day has its own data, and I need to run some science stuff without using the recent data.

Basically I need to block comment it out. How is that done in Liberty Basic?

Upvotes: 3

Views: 508

Answers (1)

arserbin3
arserbin3

Reputation: 6148

Liberty Basic does not support multi-line comments. it only supports these two single line formats:

'This is a comment
REM This is a comment

so the best alternative is it repeatedly type: ' + down arrow + left arrow

Some BASIC programming languages support multi-line comments like so:

/' This is
a multi-line
comment '/

Upvotes: 6

Related Questions