mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
14 lines
356 B
Plaintext
14 lines
356 B
Plaintext
|
---input---
|
||
|
f"Hello {name}!"
|
||
|
|
||
|
---tokens---
|
||
|
'f' Literal.String.Affix
|
||
|
'"' Literal.String.Double
|
||
|
'Hello ' Literal.String.Double
|
||
|
'{' Literal.String.Interpol
|
||
|
'name' Name.Variable
|
||
|
'}' Literal.String.Interpol
|
||
|
'!' Literal.String.Double
|
||
|
'"' Literal.String.Double
|
||
|
'\n' Text.Whitespace
|