You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
256 B

  1. '''
  2. Created on Feb 2, 2014
  3. @author: Chris
  4. '''
  5. import time
  6. from gooey import Gooey
  7. def main():
  8. end = time.time() + 10
  9. while end > time.time():
  10. print 'Jello!', time.time()
  11. time.sleep(.8)
  12. if __name__ == '__main__':
  13. main()