1
0

54 lines
660 B
Plaintext
Raw Normal View History

==================
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))
==================
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))))))