mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
# Test that missing backslash means it's no prompt.
|
|
|
|
---input---
|
|
$ echo "> not a prompt"
|
|
> not a prompt
|
|
|
|
---tokens---
|
|
'$ ' Generic.Prompt
|
|
'echo' Name.Builtin
|
|
' ' Text.Whitespace
|
|
'"> not a prompt"' Literal.String.Double
|
|
'\n' Text.Whitespace
|
|
|
|
'> not a prompt\n' Generic.Output
|