Skip to content

Instantly share code, notes, and snippets.

@CurtTilmes
Created December 3, 2017 18:01
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 CurtTilmes/bdea88eb5b4a9eec24a797ef9a4ba732 to your computer and use it in GitHub Desktop.
Save CurtTilmes/bdea88eb5b4a9eec24a797ef9a4ba732 to your computer and use it in GitHub Desktop.
sub myfunc(%h) {
die "a must be an Int" unless %h<a> ~~ Int;
die "b must be a Str" unless %h<b> ~~ Str;
die "c must be a Rat" unless %h<c> ~~ Rat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment