Comments are tokens that are elided completely from the parser and interpreter phases. These are used to add notes about the implementation of a certain section of code, just as comments are used in any other programming language. Comments begin with ~: and end with :~. Comments can be either single-line or multiline. Comments can be nested.
Because comments can be nested, blocks of code containing closed comments can be commented out by enclosing the entire section with ~: at the start and :~ at the end. Comments that do not close every ~: token with a matching :~ token will comment out all code all the way to the end of the file or Vikari code snippet.
Comments can be interspersed with ordinary Vikari code. They can begin, exist in the middle of, or end a statement. Comments that intersect a statement work as line continuations if they are a multiline comment.
The following demonstrates various usages of comments.
The following demonstrates comments interspersed with Vikari code.