📖
Blitz Basic Language Reference
English
English
  • Introduction
  • Keywords
  • Comments
  • Identifiers
  • Basic Data Types
  • Constants
  • Variables
  • Arrays
  • Expressions and Conversions
  • Program Flow
  • Functions
  • Custom Types
Powered by GitBook
On this page
Edit on GitHub

Comments

You add comments to your programs using the ; character. Everything following ; until the end of the line will be ignored, this is useful for commenting on 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 another legal use of comments:

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

Last updated 2 years ago