comments - pannous/angle GitHub Wiki

Comments in Wasp are either Java style // or bash style # or blocks /*…*/ /#…#/

Comments and code position (line number + column) are stored in the meta field of nodes in debug mode.

A special kind of comments which are also ignored in code analysis are:

Documentation comments /// ## /** **/

These may be used in automatic documentation generation but MUST NOT INFLUENCE any code behaviour.

Use annotations for meta behaviour which may be effectful.