Skip to content

Instantly share code, notes, and snippets.

Created February 20, 2015 21:53
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 anonymous/e26c27566bccf21dfdb9 to your computer and use it in GitHub Desktop.
Save anonymous/e26c27566bccf21dfdb9 to your computer and use it in GitHub Desktop.
$ ~/rakudo-star-2015.01/install/bin/perl6 -e '
role LocalResource[$name] {
method bla {
$name.say;
}
}
my LocalResource["person"] $x; $x.bla;
my LocalResource["post"] $y; $y.bla;
'
person
post
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment