User Tools

Site Tools


guide:help:scspascalcomments

Comments

Documentation | Help File | Scripter Studio | Pascal Language | 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.

//This is a comment before ShowMessage
ShowMessage( 'Ok' ) ;
(* This is another comment *)
ShowMessage( 'More ok!' ) ;
{ And this is a comment
 with two lines }
ShowMessage( 'End of okays' ) ;
2018/05/24 11:27

Page Tools