2023-10-18 21:52:56 +00:00
|
|
|
==================
|
|
|
|
Full Line Comments
|
|
|
|
==================
|
|
|
|
|
|
|
|
not_a_comment
|
|
|
|
# comment
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
(root
|
2023-10-31 13:31:10 +00:00
|
|
|
(block
|
|
|
|
(statement
|
|
|
|
(expression
|
|
|
|
(identifier))))
|
2023-10-31 07:17:58 +00:00
|
|
|
(comment))
|
2023-10-18 21:52:56 +00:00
|
|
|
|
|
|
|
==================
|
|
|
|
Partial Line Comments
|
|
|
|
==================
|
|
|
|
|
|
|
|
not_a_comment # comment
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
(root
|
2023-10-31 13:31:10 +00:00
|
|
|
(block
|
|
|
|
(statement
|
|
|
|
(expression
|
|
|
|
(identifier))))
|
|
|
|
(comment))
|
2023-10-31 07:17:58 +00:00
|
|
|
|
|
|
|
==================
|
|
|
|
Multiline Comments
|
|
|
|
==================
|
|
|
|
|
|
|
|
# comment #
|
|
|
|
not_a_comment #
|
|
|
|
# comment # "not a comment"
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
(root
|
|
|
|
(comment)
|
2023-10-31 13:31:10 +00:00
|
|
|
(block
|
|
|
|
(statement
|
|
|
|
(expression
|
|
|
|
(identifier)))
|
|
|
|
(comment)
|
|
|
|
(comment)
|
|
|
|
(statement
|
|
|
|
(expression
|
|
|
|
(value
|
|
|
|
(string))))))
|