mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
16 lines
397 B
Plaintext
16 lines
397 B
Plaintext
---input---
|
|
echo "${a//["b"]/}"
|
|
|
|
---tokens---
|
|
'echo' Name.Builtin
|
|
' ' Text.Whitespace
|
|
'"' Literal.String.Double
|
|
'${' Literal.String.Interpol
|
|
'a' Name.Variable
|
|
'//[' Punctuation
|
|
'"b"' Literal.String.Double
|
|
']/' Punctuation
|
|
'}' Literal.String.Interpol
|
|
'"' Literal.String.Double
|
|
'\n' Text.Whitespace
|