godot-module-template/engine/modules/gdscript/tests/scripts/parser/features/while.gd

6 lines
58 B
GDScript
Raw Permalink Normal View History

2025-01-17 15:36:38 +00:00
func test():
var i = 0
while i < 5:
print(i)
i += 1