Introduction

Language Structure

IB Statements

File System

Comet 32 Runtime

Index

Statement Continuation

The Internet Basic compiler reads up to 132 characters per source line. If you need to write a statement longer than this, use the underline character (_) at the end of the source line to continue the statement on the following editor line.

The underline character signals the Internet Basic compiler that the current statement is being continued on the following source line.

There is no limit to the number of lines that may be joined using the underline continuation character.

Notes:

Also see Underscore and ampersand.

Example:

DATA: FORMAT PARTNUM$;_
             DESC$;_
             QTYHAND;_
             QTYORD;_
             QTYCOMM;_
             AVAIL;_
             LOCATION$;_
             VENDOR$_
In this example, a FORMAT statement is continued to several source lines (and indented on the secondary lines for readability purposes only).