mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 11:00:06 +08:00
17 lines
188 B
GDScript
17 lines
188 B
GDScript
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")
|