Symbols used in describing non-executable payscript information
Comments or Remarks are text that are not executed by the Payscript Interpreter. These are text that are meant for comments and other non-executable information.
Single Line Comment
A single line comment is a comment that starts from two consecutive slashes (ex: //) and ends at the end of the line.
Example:
// This is a non-executable comment
Multiple Line Comment A multiple line comment is a comment that spans one or more multiple lines. It is started by a slash followed immediately by an asterisk, and ended by an asterisk immediately followed by a slash.
Example:
/*
This is a multiple line comment.
Maraming Salamat Po.
Thank you.
*/