Skip to content

Instantly share code, notes, and snippets.

@akyoto
Created July 13, 2012 23:45
Show Gist options
  • Save akyoto/3108262 to your computer and use it in GitHub Desktop.
Save akyoto/3108262 to your computer and use it in GitHub Desktop.
# Definieren wir eine Funktion:
meineFunktion x
print x
if x == 1000
return
else
meineFunktion(x + 1)
# Und jetzt lassen wir sie von 0 starten:
meineFunktion(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment