Comments: Difference between revisions

Content deleted Content added
Jjuanhdez (talk | contribs)
Comments in NATURAL
Jjuanhdez (talk | contribs)
Comments in X10
Line 3,317: Line 3,317:
block comment.*/
block comment.*/
/* This is/* a nested */block comment.*/</lang>
/* This is/* a nested */block comment.*/</lang>


=={{header|X10}}==
All text included within the ASCII characters “/*” and “*/” is considered a comment and ignored; nested comments are not allowed.

All text from the ASCII characters “//” to the end of line is considered a comment and is ignored.
<lang X10>// This is a single line comment

/*
This comment spans
multiple lines
*/</lang>


=={{header|XLISP}}==
=={{header|XLISP}}==