in reply to help with (what I consider) a strange problem
#!/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 :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: help with (what I consider) a strange problem
by chipmunk (Parson) on Mar 19, 2001 at 08:17 UTC |