Typing in program code

You can enter program statements in upper or lower case. Whenever you leave a line that has been changed, the line will be formatted. SPEL+ keywords are case formatted and spaces are inserted around operators and after semicolons.

Consider using mixed case or lower case for variables and function names instead of all CAPs. This will make your code easier to read.

Use indentation for statements within loops. The "Auto Indent" feature automatically moves the cursor under the start of the previous line. It also indents lines after If, Else, For, Select, Case, and Do statements.

For i = 1 To 10
  Jump P(i)
  Jump P0
Next i