Created
February 8, 2016 00:07
-
-
Save MadcapJake/9b8d36c0cef1b7062b7c to your computer and use it in GitHub Desktop.
Circular Perl 6 module files
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
use B; | |
sub bar { "world"; } | |
say foo() ~ bar(); |
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
use A; | |
sub foo { "hello, "; } | |
say foo() ~ bar(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment