mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
13 lines
246 B
Plaintext
13 lines
246 B
Plaintext
# 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
|