summaryrefslogtreecommitdiff
path: root/tests/snippets/gdscript/test_variable_declaration_and_assigment.txt
blob: b2ee890652784f2848a4180a5970ee7b04dc676a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---input---
var abc = 5.4

---tokens---
'var'         Keyword
' '           Text.Whitespace
'abc'         Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'5.4'         Literal.Number.Float
'\n'          Text.Whitespace