multi-screen-projector/engine/modules/gdscript/tests/scripts/parser/features/while.gd
2025-03-13 08:40:48 +00:00

6 lines
58 B
GDScript

func test():
var i = 0
while i < 5:
print(i)
i += 1