• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H01-May-2015-451146

t/H01-May-2015-443352

ChangesH A D30-Apr-20155.5 KiB129100

MANIFESTH A D01-May-2015263 109

META.jsonH A D01-May-20151.4 KiB5655

META.ymlH A D01-May-2015929 3029

Makefile.PLH A D01-May-20151.1 KiB3128

READMEH A D30-Apr-20151.4 KiB6237

README

1NAME
2
3    constant - Perl pragma to declare constants
4
5
6DESCRIPTION
7
8    This pragma allows you to declare constants at compile-time.
9
10    When a constant is used in an expression, Perl replaces it with its
11    value at compile time, and may then optimize the expression further.
12    In particular, any code in an "if (CONSTANT)" block will be optimized
13    away if the constant is false.
14
15
16INSTALLATION
17
18    To install this module, run the following commands:
19
20        perl Makefile.PL
21        make
22        make test
23        make install
24
25    Alternatively, to install with Module::Build, you can use the
26    following commands:
27
28        perl Build.PL
29        ./Build
30        ./Build test
31        ./Build install
32
33
34SUPPORT AND DOCUMENTATION
35
36    After installing, you can find documentation for this module with
37    the perldoc command.
38
39        perldoc constant
40
41    You can also look for information at:
42
43        Search CPAN
44            http://search.cpan.org/dist/constant
45
46        CPAN Request Tracker:
47            http://rt.cpan.org/Dist/Display.html?Name=constant
48
49        AnnoCPAN, annotated CPAN documentation:
50            http://annocpan.org/dist/constant
51
52        CPAN Ratings:
53            http://cpanratings.perl.org/d/constant
54
55
56COPYRIGHT AND LICENCE
57
58    Copyright (C) 1997, 1999 Tom Phoenix.
59
60    This program is free software; you can redistribute it and/or modify it
61    under the same terms as Perl itself.
62