mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-05-12 04:41:12 -03: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
|