demos enhanced during workshop at Garoa

This commit is contained in:
Luciano Ramalho
2015-01-19 23:27:17 -02:00
parent fe0db0fa7b
commit c1e50e4477
6 changed files with 68 additions and 14 deletions

8
concurrency/timer_seq.py Normal file
View File

@@ -0,0 +1,8 @@
import time
def main():
for remaining in range(5, 0, -1):
print('Remaining: ', remaining)
if __name__ == '__main__':
main()