Roman.pm version 1.23

NAME

     Roman - Perl module for conversion between Roman and Arabic
     numerals.

SYNOPSIS

use Roman;

             $arabic = arabic($roman) if isroman($roman);
             $roman = Roman($arabic);
             $roman = roman($arabic);

DESCRIPTION

     This package provides some functions which help conversion
     of numeric notation between Roman and Arabic.

INSTALLATION

To install this module, run the following commands:

perl Makefile.PL
make
make test
make install

Or use `cpan` or `cpanp` (best way).

BUGS

     Domain of valid Roman numerals is limited to less than 4000,
     since proper Roman digits for the rest are not available in
     ASCII.

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

perldoc Roman

You can also look for information at:

Search CPAN

http://search.cpan.org/dist/Roman

CPAN Request Tracker:

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Roman

AnnoCPAN, annotated CPAN documentation:

http://annocpan.org/dist/Roman

CPAN Ratings:

http://cpanratings.perl.org/d/Roman

COPYRIGHT AND LICENCE

Copyright (c) 1995-1997 OZAWA Sakuro.
Copyright (C) 2007-2008 Alexandr Ciornii

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