The following keywords constitute the working set of commands for the VFR language. An example line of VFR code follows each keyword description to help programmers understand how a sample such code should look.
// (comment marker)
This allows a programmer to leave comments in the VFR file. They have no effect on the IFR binary that is generated. Example:
1
// this is a typical comment marker
Copied!
#define
This command is used to assign a meaningful name to a constant, and is very similar in function to the 'C' style. Example: