mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
16 lines
294 B
Plaintext
16 lines
294 B
Plaintext
|
---input---
|
||
|
a=1
|
||
|
b=2 # comment
|
||
|
|
||
|
---tokens---
|
||
|
'a' Name.Variable
|
||
|
'=' Operator
|
||
|
'1' Literal.Number
|
||
|
'\n' Text.Whitespace
|
||
|
|
||
|
'b' Name.Variable
|
||
|
'=' Operator
|
||
|
'2' Literal.Number
|
||
|
' ' Text.Whitespace
|
||
|
'# comment\n' Comment.Single
|