mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
26 lines
684 B
Plaintext
26 lines
684 B
Plaintext
|
---input---
|
||
|
f"{fn(lst,2)} {fn(lst,3)}"
|
||
|
|
||
|
---tokens---
|
||
|
'f' Literal.String.Affix
|
||
|
'"' Literal.String.Double
|
||
|
'{' Literal.String.Interpol
|
||
|
'fn' Name
|
||
|
'(' Punctuation
|
||
|
'lst' Name
|
||
|
',' Punctuation
|
||
|
'2' Literal.Number.Integer
|
||
|
')' Punctuation
|
||
|
'}' Literal.String.Interpol
|
||
|
' ' Literal.String.Double
|
||
|
'{' Literal.String.Interpol
|
||
|
'fn' Name
|
||
|
'(' Punctuation
|
||
|
'lst' Name
|
||
|
',' Punctuation
|
||
|
'3' Literal.Number.Integer
|
||
|
')' Punctuation
|
||
|
'}' Literal.String.Interpol
|
||
|
'"' Literal.String.Double
|
||
|
'\n' Text.Whitespace
|