in reply to Re^2: Golf: Count unique words
in thread Golf: Count unique words

#!/usr/bin/perl -0na
$w{$_}++for@F;print"$_ ($w{$_})
"for keys%w;print~~@F

there is literal \n at the end of second line