Commenting
Comments allow us to describe code to others reading the custom logic file without interfering with the logic. To make a comment, use the '#' character. Any line starting with '#' will be ignored by the interpreter. You can also use '/*' and '*/' to create block comments.
Example:
Last updated