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