File: README

package info (click to toggle)
libb-keywords-perl 1.12-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 96 kB
  • sloc: perl: 427; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,073 bytes parent folder | download | duplicates (5)
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
NAME
    B::Keywords - Lists of reserved barewords and symbol names

SYNOPSIS
      use B::Keywords;
      print join "\n", @B::Keywords::Symbols,
                       @B::Keywords::Barewords;

DESCRIPTION
    B::Keywords supplies seven arrays of keywords: @Scalars, @Arrays,
    @Hashes, @Filehandles, @Symbols, @Functions and @Barewords. The @Symbols
    array includes the contents of each of @Scalars, @Arrays, @Hashes and
    @Filehandles. Similarly, @Barewords adds a few non-function keywords
    (like __DATA__, NULL) to the @Functions array.

    All additions and modifications are welcome.

SEE ALSO
    keywords.pl from the perl source, perlvar, perlfunc, perldelta.

AUTHOR
    Joshua ben Jore <jjore@cpan.org>

COPYRIGHT AND LICENSE
    Copyright 2007, Joshua ben Jore. All rights reserved.

    This program is free software; you can redistribute it and/or modify it
    under the terms of either:

    a) the GNU General Public License as published by the Free Software
    Foundation; version 2, or

    b) the "Artistic License" which comes with Perl.