Skip to content

Comments

Comments Overview

You can use // or # at the beginning of the line to leave comments in your script. These lines will be ignored during execution.

// or

Example

1
2
3
// Hello world example
say 'hello'
//say 'world'
1
2
3
# Hello world example
say 'hello'
# say 'world'

Last update: July 4, 2023