Lingua/PT/Nums2Words version 1.05
=================================

Converts numbers to Portuguese words

  use Lingua::PT::Nums2Words;

  $result = num2word(5);
  # $result now holds 'cinco'

  @results = num2word(1,2,10,100,1000,9999);
  # @results now holds ('um', 'dois', 'dez', 'cem', 'mil',
  #                     'nove mil novecentos e noventa e nove')

(works with numbers ranging from 0 to 999.999.999.999.999; does not
support negative numbers)

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

No dependencies

SEE ALSO

The POD documentation in Nums2Words.pm

COPYRIGHT AND LICENCE

Copyright (C) 2004 Jose Alves de Castro

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.