Giter Site home page Giter Site logo

exporter-constants's Introduction

NAME

Exporter::Constants - Declare constants and export it.

SYNOPSIS

package My::Constants;
# declare constants and push to @EXPORT
use parent qw/Exporter/;
our @EXPORT;
our @EXPORT_OK;

use Exporter::Constants (
    \@EXPORT => {
        'TYPE_A' => 4649,
        'TYPE_B' => 5963
    },
    \@EXPORT_OK => {
        'TYPE_C' => 1919,
        'TYPE_D' => 0721
    }
);

package main;
use My::Constants;

# constants are exported.
print TYPE_A, "\n";

DESCRIPTION

This module help to declare & export constants.

MOTIVATION

I want to declare My::Own::Constants package when writing applications. These class declares constants and export to other application classes.

I can do this task by Exporter.pm and constants.pm. But I want to do it at once.

AUTHOR

Tokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM>

LICENSE

Copyright (C) Tokuhiro Matsuno

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

exporter-constants's People

Contributors

tokuhirom avatar xaicron avatar

Stargazers

Takuji Nishibayashi avatar Kan Fushihara avatar

Watchers

 avatar James Cloos avatar  avatar

Forkers

xaicron

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.