3

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?

4

1 回答 1

5

Liberty Basic 不支持多行注释。它只支持这两种单行格式:

'This is a comment
REM This is a comment

所以最好的选择是重复输入:'+向下箭头+向左箭头

一些 BASIC 编程语言支持多行注释,如下所示:

/' This is
a multi-line
comment '/
于 2012-07-02T16:45:39.510 回答