2006-10-07 | paulb | file changeset files shortlog | Added tuple initialiser. |
paulb@40 | 1 | #!/usr/bin/env python |
paulb@40 | 2 | |
paulb@40 | 3 | def f(x, y): |
paulb@40 | 4 | if x < y: |
paulb@40 | 5 | return f(x + 1, y) |
paulb@40 | 6 | else: |
paulb@40 | 7 | return x |
paulb@40 | 8 | |
paulb@40 | 9 | f(3, 20) |
paulb@40 | 10 | |
paulb@40 | 11 | # vim: tabstop=4 expandtab shiftwidth=4 |