* *
*
* * News
 • Daily news
 • Archived news

Columns
 • WildCard
 • Qbasic Articles
 • QB Comic!

Learning center
 • QB Books
 • Qbasic Lessons!
 • Qbasic FAQ
 • Newbies Section
 • Qbasic Tutorials

* *
*
*
*
*  
.Fundamental Building Blocks: BASIC Statements.

  Fundamental Building Blocks   Statements   Contents   Index
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Language Elements: BASIC Statements
 
A BASIC statement is either executable or nonexecutable.
 
  ž An executable statement advances the flow of a program's logic by
    telling the program what to do next (for example, to read input,
    write output, add two numbers together and store the result in a
    variable).
 
  ž A nonexecutable statement does not advance the flow of a program's
    logic. Instead, nonexecutable statements perform tasks such as
    allocating storage for variables, declaring and defining variable
    types, and designating variables to be shared among procedures.
 
    The following BASIC statements are nonexecutable:
 
         REM or '                      DIM (static arrays only)
         COMMON                        OPTION BASE
         CONST                         SHARED
         DATA                          STATIC
         DECLARE                       TYPE...END TYPE
         DEFtype
* * ** * * * *