blob: c0c48129f0a2da4f48c72c2e2aac983194883b93 (
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.
# This week's assignment is to create a function called 'test' that returns 1
# Your code will be run in a sandbox, so print statements are not allowed.
def test():
return 0
if __name__ == '__main__':
print test()
|