diff options
Diffstat (limited to 'Mac/Unsupported/twit/twittest.py')
-rw-r--r-- | Mac/Unsupported/twit/twittest.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Mac/Unsupported/twit/twittest.py b/Mac/Unsupported/twit/twittest.py deleted file mode 100644 index 10d3693..0000000 --- a/Mac/Unsupported/twit/twittest.py +++ /dev/null @@ -1,13 +0,0 @@ -# Test program - -def foo(arg1, arg2): - bar(arg1+arg2) - bar(arg1-arg2) - foo(arg1+1, arg2-1) - -def bar(arg): - rv = 10/arg - print rv - -foo(0,10) - |