Help for this page
my %hash; while ( <DATA> ) { chomp; $hash{$_} = 1; }
my %hash = map { chomp; $_ => undef } <DATA>;