Skip to content

Instantly share code, notes, and snippets.

@J12D
Created November 22, 2012 19:40
Show Gist options
  • Save J12D/4132661 to your computer and use it in GitHub Desktop.
Save J12D/4132661 to your computer and use it in GitHub Desktop.
Forloop
function forloop(zählvariable)
if(zählvariable<10)
return
print zählvariable
return forloop(zählvariable+1)
forloop(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment