mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
14 lines
372 B
Plaintext
14 lines
372 B
Plaintext
---input---
|
|
f"He said his name is {name!r}."
|
|
|
|
---tokens---
|
|
'f' Literal.String.Affix
|
|
'"' Literal.String.Double
|
|
'He said his name is ' Literal.String.Double
|
|
'{' Literal.String.Interpol
|
|
'name' Name
|
|
'!r}' Literal.String.Interpol
|
|
'.' Literal.String.Double
|
|
'"' Literal.String.Double
|
|
'\n' Text.Whitespace
|