Comments

Top  Previous  Next

Comments

 

Comments can be inserted inside script. You can use // chars or (* *) or { } blocks. Using // char the comment will finish at the end of line.

 

Examples:

 

//This is a comment before ShowMessage

ShowMessage('Yes');

 

(* This is another comment *)

ShowMessage('Yes or No');

 

{ And this is a comment

with two lines }

ShowMessage('It is');