lab1.py 268 B

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