Comments

XJEase supports four different types of comments:

  • Multi-line comments, enclosed between /* and */.
  • Double-slash comments, beginning with // and extending to the end of the line.
  • Triple slash comments, beginning with /// and extending to the end of the line, used to document functions with Function Docs.
  • Double slash exclamation comments, beginning with //! and extending to the end of the line, used to document files with File Docs.

Example

INT a; /* This is a multi-line comment. It spans multiple lines,
          so this is also part of the same comment. */

INT b; // This is a single line comment.