added main() call

This commit is contained in:
Guido van Rossum 1992-04-14 11:05:59 +00:00
parent b385328fbc
commit e8b8207571
1 changed files with 2 additions and 0 deletions

View File

@ -20,3 +20,5 @@ def main():
def z(n):
s = `n`
return '0' * (2 - len(s)) + s
main()