Skip to content

Instantly share code, notes, and snippets.

@waffle2k
Created April 6, 2010 14:40
Show Gist options
  • Save waffle2k/357664 to your computer and use it in GitHub Desktop.
Save waffle2k/357664 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl -w
use strict;
my @in = qw/foo bar Foo chum blatz grim nuuts/;
my %h = map{ lc( $_ ), 1 } @in;
print "$_\n"
for sort keys %h;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment