Skip to content

Instantly share code, notes, and snippets.

@MadcapJake
Created February 8, 2016 00: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 MadcapJake/9b8d36c0cef1b7062b7c to your computer and use it in GitHub Desktop.
Save MadcapJake/9b8d36c0cef1b7062b7c to your computer and use it in GitHub Desktop.
Circular Perl 6 module files
use B;
sub bar { "world"; }
say foo() ~ bar();
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