Comments: Difference between revisions

Content added Content deleted
(Add lang example)
Line 1,580: Line 1,580:
=={{header|LabVIEW}}==
=={{header|LabVIEW}}==
{{VI solution|LabVIEW_Comments.png}}
{{VI solution|LabVIEW_Comments.png}}

=={{header|Lang}}==
Single line
<syntaxhighlight lang="lang5">
# This is a comment
</syntaxhighlight>
Multiline (Line continuation)
<syntaxhighlight lang="lang5">
# This is a comment\
with multiple lines
</syntaxhighlight>
Multiline (Multiline text sequence)
<syntaxhighlight lang="lang5">
# {{{This is a comment
which has more than
2 lines
and this one}}}
</syntaxhighlight>


=={{header|Lang5}}==
=={{header|Lang5}}==