10 lines
199 B
Text
10 lines
199 B
Text
x=1; // comment ala C++
|
|
x=2; # ala scripts
|
|
/* ala C, these comments are parsed (also ala C) */
|
|
/* can /* be */ nested */
|
|
#if 0
|
|
also ala C (and parsed)
|
|
#endif
|
|
#<<<#
|
|
"here" comment, unparsed
|
|
#<<<#
|