Comments 

You add comments to your programs using the ';' character. Everything following the ';' until the end of the line will be ignored, this is useful for commenting your code - so you can always look through and follow each line in a logical manner.

The following code shows comments in use;


; Begin the Redraw Function
Function Redraw()
...
End Function

This code also shows a legal use of comments;


Function Redraw() ; Begin the Redraw Function
...
End Function