Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created November 21, 2016 19:03
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 zoffixznet/28a0b593032e191fe13ea73385f0966f to your computer and use it in GitHub Desktop.
Save zoffixznet/28a0b593032e191fe13ea73385f0966f to your computer and use it in GitHub Desktop.
class Card2 {
my @faces = <2 3 4 5 6 7 8 9 10 Jack Queen King Ace>;
subset Face of Str where * eq @faces.say;
has Face $.face is required;
}
dd Card2.new(:face('2'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment