Created
February 2, 2010 06:34
-
-
Save ELLIOTTCABLE/292442 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| coroutine foo | |
| <some code> | |
| yield # first yield | |
| <more code> | |
| yield # second yield | |
| <last bit of code> | |
| … is equivalent-ish to … | |
| subroutine foo | |
| <some code> | |
| subroutine first | |
| <more code> | |
| subroutine second | |
| <last bit of code> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment