Comments

You can use comments to make various notes regarding operation of a program module. In programming, it is considered a good habit to provide a detailed comment with algorithm description in the source code. In execution mode comments are ignored. In a program module code a comment begins with "//" couple of characters and ends at the end of string. You can begin a comment at the beginning of a string or write it after an operator in the same string. After the comment you cannot write an operator in the same string, you have to finish the comment at the end of the string.

Example:

A = In; // This is the comment

// This is also a comment

1C:Enterprise Developer's Community