Skip to content

Instantly share code, notes, and snippets.

@ysasaki
Created June 10, 2013 12:05
Show Gist options
  • Save ysasaki/5748263 to your computer and use it in GitHub Desktop.
Save ysasaki/5748263 to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use feature qw/say/;
sub my_map(&@) {
my ( $block, @list ) = @_;
$block->($_) for @list;
}
my @list = qw(foo bar);
my_map { say shift; } @list;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment