This repository has been archived on 2024-06-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coffee.pygments/tests/snippets/qbasic/test_keywords_with_dollar.txt
Georg Brandl b40b0cca06 Rename "tests/lexers" to "tests/snippets" and update the contribution
docs to point to both snippets and examplefiles.
2021-01-20 10:57:30 +01:00

22 lines
526 B
Text

---input---
DIM x
x = RIGHT$("abc", 1)
---tokens---
'DIM' Keyword.Declaration
' ' Text.Whitespace
'x' Name.Variable.Global
'\n' Text
'x' Name.Variable.Global
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'RIGHT$' Keyword.Reserved
'(' Punctuation
'"abc"' Literal.String.Double
',' Punctuation
' ' Text.Whitespace
'1' Literal.Number.Integer.Long
')' Punctuation
'\n' Text