Introduction to Using PxPlus

Language Elements

 

This section provides an overview of the basic concepts and elements used for building PxPlus applications. While the language itself is easy to learn, the method of execution may seem a little unusual for novices, particularly if they are used to compiled languages. PxPlus is interpreted, which means it is executed directly from its source form:

PxPlus is ideal for development, debugging and testing. By comparison, most compiled languages require separate procedures for entering source and for generating object code, which must be saved to a different file outside of the development environment to be executed. Interpreted code is quicker because it requires fewer steps; i.e. enter + interpret instead of enter + compile + run.

When PxPlus tokenizes source statements, each multi-character reserved word and value is compressed into 1-byte tokens (ignoring white spaces). Maintaining tokenized source uses far less memory and is much faster to interpret and execute than working in the original format. When further editing is required, the tokenized code is simply reconstructed back into readable text when displayed in PxPlus.

Note:
If you are new to PxPlus, remember that applications written in PxPlus can only be executed on systems that run a copy of PxPlus.

See Also

Directives, Statements and Programs
Primary Syntax Elements
Data Types, Literals and Variables