Business::BR - Root for namespace of Brazilian business-related modules


Business-BR-Ids documentation Contained in the Business-BR-Ids distribution.

Index


Code Index:

NAME

Top

Business::BR - Root for namespace of Brazilian business-related modules

SYNOPSIS

Top

  use Business::BR; # does nothing, it is just a placeholder

DESCRIPTION

Top

This module is meant to provide a root for the namespace Business::BR. It is meant as a placeholder to reserve and explain how the namespace can be used.

To see actual code, take a look at Business::BR::* modules

  http://search.cpan.org/search?query=Business%3A%3ABR&mode=module

SEE ALSO

Top

The namespace has been chosen based on similar modules for other countries, like Business::FR::SSN which tests the French "Numéro de Sécurité Sociale", the Business::AU::* http://search.cpan.org/search?query=Business%3A%3AAU&mode=module and Business::CN::* http://search.cpan.org/search?query=Business%3A%3ACN&mode=module modules.

Please reports bugs via CPAN RT, http://rt.cpan.org/NoAuth/Bugs.html?Dist=Business-BR-Ids

AUTHOR

Top

A. R. Ferreira, <ferreira@cpan.org>

COPYRIGHT AND LICENSE

Top


Business-BR-Ids documentation Contained in the Business-BR-Ids distribution.

package Business::BR;

use 5;
use strict;
use warnings;

#require Exporter;
#our @ISA = qw(Exporter);
#our %EXPORT_TAGS = ( 'all' => [ qw() ] );
#our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
#our @EXPORT = qw();

our $VERSION = '0.0022';

1;

__END__