From: Guido van Rossum Date: Tue, 14 Apr 1992 11:05:59 +0000 (+0000) Subject: added main() call X-Git-Tag: v0.9.8~355 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e8b8207571be69b092a6a15239fb0d1fdf02a8ef;p=thirdparty%2FPython%2Fcpython.git added main() call --- diff --git a/Demo/sgi/cd/listcd.py b/Demo/sgi/cd/listcd.py index 299cd982f450..5017851e6189 100755 --- a/Demo/sgi/cd/listcd.py +++ b/Demo/sgi/cd/listcd.py @@ -20,3 +20,5 @@ def main(): def z(n): s = `n` return '0' * (2 - len(s)) + s + +main()