mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
17 lines
188 B
GDScript3
17 lines
188 B
GDScript3
|
|
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")
|