PreviousUp

10.3.2  C-style Comments

Mythryl supports C-style comments for comments which need to end before the next newline or run more than one line. Unlike C comments, Mythryl comments will nest:

    this is /* A comment: */ code;

    /*
      This is a comment.
     */

    /*
     * This is a comment.   /* This is a nested comment. */
     */

In practice this style comment is seldom used.


Comments and suggestions to: bugs@mythryl.org

PreviousUp