comments.md
June 6, 2026 ยท View on GitHub
Documentation
- Bytecode
- Configuration
- Performance
- Comments
// - Conditions
ifelseend - Constants
truefalseHIGHLOWINPUTOUTPUT - Cycles
forwhilenextbreakcontinue - Functions
functionlocalsreturndone - Macros
macro - Numeric variables
@@[] - Operators
+-*/%==!=>>=<<=&&||&|^>><<++--~not - Strings
::[] - System functions
adc readargscharcursordelayfile closefile openfile readfile writepipe closepipe openpipe readpipe writeincludeindexinputio openio readio writememmillisnumbernumericprintrandomrestartserial openserial readserial writesizestopstring - Unary operators
++--
Comments
Comments are human-readable notes present in the source-code. They will be ignored by the compiler. The // symbol signals the start of a comment. A comment can make use of an entire line:
// This is a comment
or can be placed after a statement:
print "Hello world!" // This is another comment