tartrazine/tests/properties/test_comments.txt

13 lines
246 B
Plaintext
Raw Normal View History

2024-08-03 10:36:47 +00:00
# Assures lines lead by either # or ! are recognized as a comment
---input---
! a comment
# also a comment
---tokens---
'! a comment' Comment.Single
'\n' Text.Whitespace
'# also a comment' Comment.Single
'\n' Text.Whitespace