1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
NAME
PerlX::Define - cute syntax for defining constants
SYNOPSIS
use v5.12;
use strict;
use warnings;
package MyMaths {
use PerlX::Define;
define PI = 3.2;
}
DESCRIPTION
PerlX::Define is a yet another module for defining constants.
Differences from constant.pm:
* Cute syntax.
Like constant.pm, constants get defined at compile time, not run time.
* Requires Perl 5.12 or above.
If you're lucky enough to be able to free yourself from the shackles
of supporting decade-old versions of Perl, PerlX::Define is your
friend.
* Only supports scalar constants.
List constants are rarely useful.
Your constant can of course be a reference to an array or hash, but
this module doesn't attempt to make the referred-to structure read
only.
* Doesn't try to handle some of the things constant.pm does like
declaring constants using fully-qualified names, or defining constants
pointing at magic scalars.
Prior to version 0.100, PerlX::Define was bundled with Moops.
BUGS
Please report any bugs to
<http://rt.cpan.org/Dist/Display.html?Queue=PerlX-Define>.
SEE ALSO
constant.
Moops.
AUTHOR
Toby Inkster <tobyink@cpan.org>.
COPYRIGHT AND LICENCE
This software is copyright (c) 2013-2014, 2018 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under the
same terms as the Perl 5 programming language system itself.
DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|