Skip to content

Instantly share code, notes, and snippets.

@kunigami
Last active January 27, 2020 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/061aeb10dc2c2774dc16c3ca31dbcef4 to your computer and use it in GitHub Desktop.
Save kunigami/061aeb10dc2c2774dc16c3ca31dbcef4 to your computer and use it in GitHub Desktop.
# Dummy function that prints what it receives
def echo():
print("initialized")
while True:
line = (yield)
print(line)
gen = echo()
gen.send(None)
gen.send("hello")
gen.send("world")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment