Skip to content

Instantly share code, notes, and snippets.

@tomill
Created October 29, 2010 15:13
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 tomill/653725 to your computer and use it in GitHub Desktop.
Save tomill/653725 to your computer and use it in GitHub Desktop.
use 5.010;
use List::Util qw/first/;
given ('foo') {
warn first { $_ eq 'foo' } qw/ bar baz /; # => bar
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment