Skip to content

Instantly share code, notes, and snippets.

@clkao
Created May 22, 2010 12:10
Show Gist options
  • Save clkao/410026 to your computer and use it in GitHub Desktop.
Save clkao/410026 to your computer and use it in GitHub Desktop.
use feature qw(switch); use List::MoreUtils qw(firstidx); my @a = 11..20; given(1) { when(1) { # my $_; my $i = firstidx { $_ % 5 == 0 } @a; print "$i $a[$i]\n"; } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment