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.

19 lines
263 B

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