9 lines
329 B
Plaintext
9 lines
329 B
Plaintext
rem Hey, this is a comment
|
|
# the hash-sign too (at beginning of line)
|
|
// even the double slash
|
|
' and the single quote (at beginning of line)
|
|
print "Not a comment" # This is an error !!
|
|
print "Not a comment":// But this is again a valid comment
|
|
print "Not a comment" // even this.
|
|
print "Not a comment" rem and this !
|