Page 1 of 1

Multiple Line Comments in Basic Code

Posted: Tue Feb 06, 2007 9:02 am
by DSguru2B
Its basically a simple question, How to comment out a huge block of code without putting stars before each and every line. I am looking for something synonymous to

Code: Select all

/*
All
   of
      the
          these
                 lines
                       are
                           comments
*/
in a C program.
Does such a thing exist for a Basic program

Posted: Tue Feb 06, 2007 9:04 am
by ArndW
No, each line needs to be commented.

Code: Select all

**************************
** This is a big block  **
** of comments          **
**************************

Posted: Tue Feb 06, 2007 9:07 am
by DSguru2B
I was afraid of that. Anyways, thanks for confirming it.