mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
16 lines
347 B
Plaintext
16 lines
347 B
Plaintext
---input---
|
|
@(1+(2+3));
|
|
|
|
---tokens---
|
|
'@(' Literal
|
|
'1' Literal.Number.Integer
|
|
'+' Operator
|
|
'(' Punctuation
|
|
'2' Literal.Number.Integer
|
|
'+' Operator
|
|
'3' Literal.Number.Integer
|
|
')' Punctuation
|
|
')' Literal
|
|
';' Punctuation
|
|
'\n' Text.Whitespace
|