Recently we where asked how do you put comments in your scripts. This quick post shows us that you can have two types of comments. The first is the block comment. To create a block comment place a ‘! at the start of the bit you want to comment out and then a !’ at the end and you will see that you have commented out that section.
Routing(Web) '! * Survey Description : Comments * Last Updated : 16th June 2011 !' Q1.ask() ' **** End of Survey End: End Routing
The next type of comment you can have is a single line comment. To create a single line comment place a ‘ at the front of the line that you want to comment out.