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
282 B

'''
Created on Feb 2, 2014
@author: Chris
'''
import time
from gooey import Gooey
@Gooey(show_config=False)
def main():
end = time.time() + 1
while end > time.time():
print 'Jello!', time.time()
time.sleep(.8)
if __name__ == '__main__':
main()