Advertisement
Guest User

/tmp/main.p6

a guest
Dec 4th, 2017
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 6 0.12 KB | None | 0 0
  1. sub GLOBAL::MAIN() {
  2.     X::Y::Z.wut();
  3. }
  4.  
  5. unit class X::Y::Z;
  6.  
  7. method wut() { hi() }
  8. sub hi() is export { say "hi" }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement