http://www.perlmonks.org?node_id=65355


in reply to help with (what I consider) a strange problem

Thank you all for your help. I apologize for neglecting to use perldoc
My code is now:

#!/usr/bin/perl -w use strict; use Text::Bastardize; chomp(my $line = <>); my $latin = Text::Bastardize->new(); $latin->charge($line); print $latin->pig(),"\n"

Which works perfectly :)

update: removed unecessary `$_' assignment. Thanks danger :)