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