1
0

50 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-11-04 06:02:27 -04:00
================================================================================
Full Line Comments
2023-11-04 06:02:27 -04:00
================================================================================
not_a_comment
# comment
2023-11-04 06:02:27 -04:00
--------------------------------------------------------------------------------
(root
2023-11-10 20:44:03 -05:00
(statement
2024-02-16 10:55:15 -05:00
(statement_kind
(expression
(identifier)))))
2023-11-04 06:02:27 -04:00
================================================================================
Partial Line Comments
2023-11-04 06:02:27 -04:00
================================================================================
not_a_comment # comment
2023-11-04 06:02:27 -04:00
--------------------------------------------------------------------------------
(root
2023-11-10 20:44:03 -05:00
(statement
2024-02-16 10:55:15 -05:00
(statement_kind
(expression
(identifier)))))
2023-10-31 03:17:58 -04:00
2023-11-04 06:02:27 -04:00
================================================================================
2023-10-31 03:17:58 -04:00
Multiline Comments
2023-11-04 06:02:27 -04:00
================================================================================
2023-10-31 03:17:58 -04:00
# comment #
not_a_comment #
# comment # "not a comment"
2023-11-04 06:02:27 -04:00
--------------------------------------------------------------------------------
2023-10-31 03:17:58 -04:00
(root
2023-11-10 20:44:03 -05:00
(statement
2024-02-16 10:55:15 -05:00
(statement_kind
(expression
(identifier))))
2023-11-10 20:44:03 -05:00
(statement
2024-02-16 10:55:15 -05:00
(statement_kind
(expression
(value
(string))))))