1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-27 12:20:04 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/gdscript/basic_blocks.gd
2022-04-14 12:01:23 +08:00

17 lines
188 B
GDScript
Vendored

extends Node
func _ready():
var x := 2
for i in range(x):
prints(i)
while x > 0:
print(x)
if x > 0:
print("if test")
elif x < 0:
print("if test")
else:
print("if test")