temporary commit: function behaviour changes

This commit is contained in:
David Halter
2012-05-21 17:42:46 +02:00
parent fd1246818a
commit 1ee26a09c6
5 changed files with 316 additions and 243 deletions

View File

@@ -54,6 +54,18 @@ variable_rename(list())().
#? []
variable_rename(1)().
# -----------------
# recursion (should ignore)
# -----------------
def recursion(a, b):
if a:
return b
else:
return recursion(a+".", b+1)
#? int() float()
recursion("a", 1.0)
# -----------------
# keyword arguments
# -----------------