|
Comments |
Top Previous Next |
|
Comments are sections of code that are intended for human reading but that will be ignored by the Blox Basic interpreter. Comments help you understand the code. It is also useful for others who may read your code.
Blox Basic comments start with the ' character and continue until the end of the line. The Trading Blox Builder interpreter ignores any characters or code that follows a ' character
Example
' --------------------------------------------------------------------------- ' The Amazing Code to Add Two Variables Together!!! ' Copyright 2005 By TradingBlox LLC. All Rights Reserved. ' Steal this code at your own peril! ' ---------------------------------------------------------------------------
'Add a and b sum = ( a + b )
'That was great! |