mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
13 lines
353 B
Plaintext
13 lines
353 B
Plaintext
|
---input---
|
||
|
foo = true # comment used to prevent bool from being recognized
|
||
|
|
||
|
---tokens---
|
||
|
'foo' Name
|
||
|
' ' Text.Whitespace
|
||
|
'=' Operator
|
||
|
' ' Text.Whitespace
|
||
|
'true' Keyword.Constant
|
||
|
' ' Text.Whitespace
|
||
|
'# comment used to prevent bool from being recognized' Comment.Single
|
||
|
'\n' Text.Whitespace
|