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/tcl/test_vars.txt
2022-06-04 10:01:52 +02:00

17 lines
401 B
Text

---input---
set size 10; puts ${size}x${size}
---tokens---
'set' Keyword
' ' Text.Whitespace
'size' Text
' ' Text.Whitespace
'10' Literal.Number.Integer
';' Keyword
' ' Text.Whitespace
'puts' Name.Builtin
' ' Text.Whitespace
'${size}' Name.Variable
'x' Text
'${size}' Name.Variable
'\n' Text