6 lines
67 B
GDScript
6 lines
67 B
GDScript
func test():
|
|
if true:
|
|
var a = 1
|
|
print(a)
|
|
var a = 2
|
|
print(a)
|