mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
16 lines
439 B
Plaintext
16 lines
439 B
Plaintext
---input---
|
|
message = """multiline strings
|
|
can be followed by""" # comments
|
|
|
|
---tokens---
|
|
'message' Name
|
|
' ' Text.Whitespace
|
|
'=' Operator
|
|
' ' Text.Whitespace
|
|
'"""' Literal.String.Double
|
|
'multiline strings\n can be followed by' Literal.String.Double
|
|
'"""' Literal.String.Double
|
|
' ' Text.Whitespace
|
|
'# comments' Comment.Single
|
|
'\n' Text.Whitespace
|