๐ฌ Comments
Comments in ZeroTrace scripts let you add notes or explanations to your code without affecting how it runs. Use comments to make your scripts clearer for yourself and others!
โ๏ธ Comment Syntax Rules
You can write comments in several ways:
- Official Comments
Use#
or//
at the start of a line Use '//' for inline comments
- Freestyle Comments You can write anything on a new line, as long as it doesn't get detected as a command. For example:
If your comment looks like a command (e.g., starts with known keywords like writeLn
, delay
, etc.), it will be executed. So, avoid using command-like phrases for freestyle comments!
โ Valid Usage
โ Invalid Usage
Use comments to make your scripts easier to understand. Official comments (#
or //
) are recommended for clarity. Freestyle comments work tooโjust donโt make them look like commands!