/gist:7064d9fc21e5b1df6a1a Secret
Created
November 4, 2012 21:06
Star
You must be signed in to star a gist
make-stubs
This file contains 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
| macro make-stubs(...) { ... } | |
| make-stubs(<sub1 sub2 sub3 sub4>); | |
| say "hi"; | |
| sub1(); # this executes the stub-sub that make-stubs made | |
| say "hi again"; | |
| sub2(); # also a stub-sub made by the make-stubs call | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment