Adding Comments within Algorithms

The comment control code inserts comments in the algorithm field.

Example

          $a = rand(-20, 20);

          comment: Make sure that $a is not zero before

          comment: dividing by it...

          condition: not(eq($a, 0));

          $b = 1/$a;