RosettaCodeData/Task/Comments/M2000-Interpreter/comments.m2000
2023-07-01 13:44:08 -04:00

15 lines
358 B
Text

Module Comments {
Rem {
Print "no print here"
? "no print here either"
}
Rem : single line remark
// single line
\ single line
' single line
? "ok" : Rem : Print "not print - but code have syntax highlight"
? "ok" // single line - start without double colon
? "ok" \ single line - start without double colon
Print "ok" ' single line
}
Comments