23 lines
269 B
Plaintext
23 lines
269 B
Plaintext
# comment
|
|
|
|
// This is a comment
|
|
/* This is also a comment */
|
|
/* this comment /* // /** ends here: */
|
|
|
|
==>
|
|
|
|
Program(LineComment, BlockComment, BlockComment)
|
|
|
|
|
|
# comments and literals
|
|
|
|
123;
|
|
// comment
|
|
|
|
==>
|
|
|
|
Program(
|
|
ExpressionStatement(IntegerLiteral),
|
|
LineComment)
|
|
|