Data editing > Writing in the Quantum language > Comments
 
Comments
Comment statements insert comments or information into the Quantum program. They do not affect the way a program works because they are ignored when the program is run to produce tables.
Comments are identified either by a capital C in column 1 or by /* (slash and asterisk) in columns 1 and 2. If a comment needs more than one line, each line must start with the appropriate notation otherwise it is assumed to require some sort of action.
/* This is the first comment
/* This is the second comment
It is a good idea to put comment statements in your program in case someone else has to take over your job or to remind yourself what you are doing and why. For example:
/* Edam is 1 if Edam mentioned at Q1, Q3 or Q6
if (c110'1'.or.c114'1'.or.c121'1') edam=1
See also
Writing in the Quantum language