mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
---input---
|
|
%(hello ("world"))
|
|
%[hello ["world"]]
|
|
%{hello "world"}
|
|
%<hello <"world">>
|
|
%|hello "world"|
|
|
|
|
---tokens---
|
|
'%(' Literal.String.Other
|
|
'hello ' Literal.String.Other
|
|
'(' Literal.String.Other
|
|
'"world"' Literal.String.Other
|
|
')' Literal.String.Other
|
|
')' Literal.String.Other
|
|
'\n' Text.Whitespace
|
|
|
|
'%[' Literal.String.Other
|
|
'hello ' Literal.String.Other
|
|
'[' Literal.String.Other
|
|
'"world"' Literal.String.Other
|
|
']' Literal.String.Other
|
|
']' Literal.String.Other
|
|
'\n' Text.Whitespace
|
|
|
|
'%{' Literal.String.Other
|
|
'hello "world"' Literal.String.Other
|
|
'}' Literal.String.Other
|
|
'\n' Text.Whitespace
|
|
|
|
'%<' Literal.String.Other
|
|
'hello ' Literal.String.Other
|
|
'<' Literal.String.Other
|
|
'"world"' Literal.String.Other
|
|
'>' Literal.String.Other
|
|
'>' Literal.String.Other
|
|
'\n' Text.Whitespace
|
|
|
|
'%|' Literal.String.Other
|
|
'hello "world"' Literal.String.Other
|
|
'|' Literal.String.Other
|
|
'\n' Text.Whitespace
|