blob: 3bc048543bf18e472c718aecc416cf3ca850666a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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")
|