Skip to content

Instantly share code, notes, and snippets.

@alairock
Created July 27, 2018 22:31
Show Gist options
  • Save alairock/e4ca9e5537483656034580c6d0121449 to your computer and use it in GitHub Desktop.
Save alairock/e4ca9e5537483656034580c6d0121449 to your computer and use it in GitHub Desktop.
def make_sandwich():
customer = yield 'No Customer'
print(customer)
action = make_sandwich()
print(next(action))
print(action.send(13))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment