A.1 Comments

In order to increase the readability of the input files IDDL supports two different kinds of comments. By means of a double slash (//) a single-line comment can be introduced where the rest of the line is treated as a remark and is ignored.

Multi-line comments can be inserted at any position in the input file using the sequence /* ... */. Everything between these marks is treated as a comment and removed before.

// A single line comment
/* This is the first line of another comment.
   And this is the second line. */

Robert Klima 2003-02-06