Thanks.
it got installed (I think). Now when I run the script I get following error:
Undefined subroutine &main::num2en_ordinal called at ConvertNumToWord.pl line 6
.
My program is as follows:
use Lingua::EN::Numbers; #qw(num2en num2en_ordinal);
my $x = 234;
my $y = 54;
#print "You have ", num2word($x), " things to do today!\n";
print "You will stop caring after the ", num2en_ordinal($y), ".\n";