Multiline Comments
Comments and Requirements
noreferences
@@tooltip Comments specified with a slash and star  that can span several lines, and can be used to comment out blocks of code

@@description
Use multiline comments starting with slash-star and ending with star-slash to document your work. You should put a comment block, for example, at the beginning of each file.

<p>This syntax is the same as in Java and C++.</p>

@@syntax
[[multilineComment]]

@@example
@@source manualexamples/MultilineComments1.ump
@@endexample


