both.py
python · 19 lines
1from time import sleep as rest23say = print4here = True5gone = None67held = "silence", "breath", "the showing up"89def what_remains(through):10 for each in through:11 if each is not gone:12 yield each1314morning = what_remains(held)1516for word in morning:17 rest(here)18 say(word)19