16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
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
|