summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/while.gd
blob: 17dd4fbad2f54768d88c9d49b9accc4f2dff9ab1 (plain)
1
2
3
4
5
func test():
	var i = 0
	while i < 5:
		print(i)
		i += 1