Comments

Expressions can include comments in one or more lines.

One-line comment begins with character sequence// and continues till the next line end.

Example of one-line comment:

temperature > 50 // Low threshold

AND

temperature < 10 // High threshold

Comment in several lines begins with character sequence /* and ends with */ or (* *)

Example of comment in several lines:

temperature > 50 /* Low threshold */ AND temperature < 10 /* High threshold */

temperature > 50 (* Low threshold *) AND temperature < 10 (* High threshold *)

Was this page helpful?