Comments in Script

Comments are short notes in script that are ignored by the parser. They have no visual effect and serve to improve readability of a script. A comment starts with # sign and continues till the line end. It can span the whole line or may follow by some code.

Example
# This is a comment

set Pi to 3.14  # Sets value of Pi
...kinds of numbers