mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
16 lines
422 B
Plaintext
16 lines
422 B
Plaintext
|
---input---
|
||
|
f"{{{4*10}}}"
|
||
|
|
||
|
---tokens---
|
||
|
'f' Literal.String.Affix
|
||
|
'"' Literal.String.Double
|
||
|
'{{' Literal.String.Escape
|
||
|
'{' Literal.String.Interpol
|
||
|
'4' Literal.Number.Integer
|
||
|
'*' Operator
|
||
|
'10' Literal.Number.Integer
|
||
|
'}' Literal.String.Interpol
|
||
|
'}}' Literal.String.Escape
|
||
|
'"' Literal.String.Double
|
||
|
'\n' Text.Whitespace
|