blob: fc6fef8c88d8e1845d8d0421c86b2f688e60c549 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env python
# Welcome to the test of pyc! Thanks for participating.
# The first assignment is to create a function called 'test' that returns 1
# This is probably easier than you think.
def test():
return 0
if __name__ == '__main__':
print test()
|