54 lines
660 B
Plaintext
54 lines
660 B
Plaintext
==================
|
|
Full Line Comments
|
|
==================
|
|
|
|
not_a_comment
|
|
# comment
|
|
|
|
---
|
|
|
|
(root
|
|
(block
|
|
(statement
|
|
(expression
|
|
(identifier))))
|
|
(comment))
|
|
|
|
==================
|
|
Partial Line Comments
|
|
==================
|
|
|
|
not_a_comment # comment
|
|
|
|
---
|
|
|
|
(root
|
|
(block
|
|
(statement
|
|
(expression
|
|
(identifier))))
|
|
(comment))
|
|
|
|
==================
|
|
Multiline Comments
|
|
==================
|
|
|
|
# comment #
|
|
not_a_comment #
|
|
# comment # "not a comment"
|
|
|
|
---
|
|
|
|
(root
|
|
(comment)
|
|
(block
|
|
(statement
|
|
(expression
|
|
(identifier)))
|
|
(comment)
|
|
(comment)
|
|
(statement
|
|
(expression
|
|
(value
|
|
(string))))))
|