Skip to content

Instantly share code, notes, and snippets.

@hoelzro
Last active December 14, 2015 20:49
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 hoelzro/5146266 to your computer and use it in GitHub Desktop.
Save hoelzro/5146266 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl6
use v6;
my $valid-options = Set.new(qw{foo});
sub some-sub(*%options where { $valid-options ~~ $_ }) {
say 'success';
}
some-sub(:baz<bar>);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment