Skip to content

Instantly share code, notes, and snippets.

@TimToady
Created February 16, 2013 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save TimToady/4967666 to your computer and use it in GitHub Desktop.
Save TimToady/4967666 to your computer and use it in GitHub Desktop.
role Foo[::T] {
has T $.payload = T;
}
role Bar[::T] {
my class Fooey does Foo[T] {}
submethod BUILD { Fooey.new; }
}
class RatBar does Bar[Rat] {}
RatBar.new;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment