a="hello"
b="test"

gosub func 0,5

print a
print b

end

func a,b
	a=a+1
	if a<b then gosub func a,b
	print a
return





