in reply to Re: Convert number into words
in thread Convert number into words

Thanks for your quick response. I cant load Lingua::Num2Word. It tells me it cant find MakeFile.pl.. any ideas why? Thanks, PJ

Replies are listed 'Best First'.
Re^3: Convert number into words
by dragonchild (Archbishop) on May 31, 2005 at 19:44 UTC
    • How are you trying to "load Lingua::Num2Word"?
    • What is the exact error message you're seeing?
    • Can you create a minimal test case that contains just enough code to demonstrate the problem?

    • In general, if you think something isn't in Perl, try it out, because it usually is. :-)
    • "What is the sound of Perl? Is it not the sound of a wall that people have stopped banging their heads against?"
      I downloaded package containing Lingua::EN::Numbers. I did perl MakeFile.pl, which ran fine. then I tried doing "Make" and it gives me following error:

      "C:\Perl\NumtoWord\Lingua-EN-Numbers-Ordinate-1.02>make 'make' is not recognized as an internal or external command, operable program or batch file."

      Thanks,
        on windows the make command is called nmake.

        If it is not installed on your system you can get it from MS: nmake

Re^3: Convert number into words
by ambrus (Abbot) on May 31, 2005 at 19:48 UTC

    Try Makefile.PL if you're on a case-sensitive system. Also try adding a ./ prefix.

      I did. It doesnt work. :( ahh.. Thanks,