Skip to content

Instantly share code, notes, and snippets.

@Tux
Created March 1, 2015 13:30
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 Tux/8d83069f3bb2b87cf98c to your computer and use it in GitHub Desktop.
Save Tux/8d83069f3bb2b87cf98c to your computer and use it in GitHub Desktop.
use v6;
sub foo (*@y) {
for @y {
s{^(\d+)$} = sprintf "%03d:", $_;
.say;
}
}
foo("bar");
foo("0");
foo("1x");
foo(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment