| Different code styles
In Superbase, there are 3 different forms of BASIC that are supported
Line Number Basic - this is the oldest and least used type, but is there for people familiar with
using line numbers in their programs
QuickBasic style - this is where SUBroutines and FUNCTIONs and procedures are declared. Many version
2 and early version 3 style programs are written in this mode.
Visual Basic for Applications (VBA) style - this is the style that is most commonly associated with
Microsoft Visual Basic, or applications that follow the Visual Basic
paradigm. It's an extension on top of the QuickBasic style, and it's the
3rd evolution of the BASIC programming language.
More:
Line Number Basic
QuickBasic syntax
Visual Basic Syntax
|