mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
21 lines
522 B
Plaintext
21 lines
522 B
Plaintext
|
---input---
|
||
|
(+ 1 2 (- 9 8))
|
||
|
|
||
|
---tokens---
|
||
|
'(' Punctuation
|
||
|
'+' Name.Function
|
||
|
' ' Text.Whitespace
|
||
|
'1' Literal.Number.Float
|
||
|
' ' Text.Whitespace
|
||
|
'2' Literal.Number.Float
|
||
|
' ' Text.Whitespace
|
||
|
'(' Punctuation
|
||
|
'-' Name.Function
|
||
|
' ' Text.Whitespace
|
||
|
'9' Literal.Number.Float
|
||
|
' ' Text.Whitespace
|
||
|
'8' Literal.Number.Float
|
||
|
')' Punctuation
|
||
|
')' Punctuation
|
||
|
'\n' Text.Whitespace
|