Skip to content

Instantly share code, notes, and snippets.

@hoelzro
Created July 12, 2012 07:28
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/3096456 to your computer and use it in GitHub Desktop.
Save hoelzro/3096456 to your computer and use it in GitHub Desktop.
use v6;
sub foo(*@args)
{
say @args.elems;
}
my %hash;
%hash<foo> = 17;
%hash<bar> = 18;
%hash<baz> = 19;
foo(%hash);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment