Comments
In OQL, comments are identical to the C++:
- all characters after the token // until the end of the current
line are ignored by the interpreter,
- all characters between the tokens /* and */ are
ignored.
For instance:
1 + 2; // this is a comment
a := "hello"; /* this is another
comment */
EyeDB manual