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?

arserbin3
  • 6,010
  • 8
  • 36
  • 52

1 Answers1

6

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 '/
arserbin3
  • 6,010
  • 8
  • 36
  • 52
  • Is liberty basic any good. is it worth the money and can you make windows like in VB .NET. What is really the benefit of Liberty basic over the .NET framework. –  Mar 19 '14 at 17:40
  • Does liberty basic have its own tag. –  Mar 20 '14 at 01:44