Skip to main content

Comments

EasyBite supports both single‑line and multiline comments to help you document and structure your code.


Single‑line comments

Use // to comment out the remainder of a line:

// This is a single‑line comment
show "Hello, EasyBite!" // You can comment after code too

Multiline comments

Enclose text between /* and */ to comment out a block of lines:

/*
This is a multiline comment.
You can span it across several lines
to explain complex logic or temporarily
disable code blocks.
*/
show "Multiline comments are now supported!"