This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Correct code-like snippet in documentation
[perl5.git] / README
CommitLineData
d2de3398 1Perl is Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
a271a376 22001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012,
81d293c2 32013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023
9194fd8b 4by Larry Wall and others.
1831d2c9 5
e84cc8c8 6All rights reserved.
8d063cd8 7
42557cf4 8# ABOUT PERL
a687059c 9
a0bda3fb
JV
10Perl is a general-purpose programming language originally developed for
11text manipulation and now used for a wide range of tasks including
12system administration, web development, network programming, GUI
13development, and more.
8e07c86e 14
a0bda3fb
JV
15The language is intended to be practical (easy to use, efficient,
16complete) rather than beautiful (tiny, elegant, minimal). Its major
17features are that it's easy to use, supports both procedural and
18object-oriented (OO) programming, has powerful built-in support for text
19processing, and has one of the world's most impressive collections of
20third-party modules.
d48672a2 21
a0bda3fb
JV
22For an introduction to the language's features, see pod/perlintro.pod.
23
8f03122b 24For a discussion of the important changes in this release, see
37ee6528 25pod/perldelta.pod.
8f03122b 26
a0bda3fb
JV
27There are also many Perl books available, covering a wide variety of topics,
28from various publishers. See pod/perlbook.pod for more information.
29
30
42557cf4 31# INSTALLATION
a0bda3fb
JV
32
33If you're using a relatively modern operating system and want to
34install this version of Perl locally, run the following commands:
35
42557cf4
RS
36 ./Configure -des -Dprefix=$HOME/localperl
37 make test
38 make install
a0bda3fb 39
b6e5a715
RGS
40This will configure and compile perl for your platform, run the regression
41tests, and install perl in a subdirectory "localperl" of your home directory.
42
a0bda3fb
JV
43If you run into any trouble whatsoever or you need to install a customized
44version of Perl, you should read the detailed instructions in the "INSTALL"
45file that came with this distribution. Additionally, there are a number of
46"README" files with hints and tips about building and using Perl on a wide
47variety of platforms, some more common than others.
48
49Once you have Perl installed, a wealth of documentation is available to you
50through the 'perldoc' tool. To get started, run this command:
51
42557cf4 52 perldoc perl
a0bda3fb
JV
53
54
42557cf4 55# IF YOU RUN INTO TROUBLE
a687059c 56
a0bda3fb
JV
57Perl is a large and complex system that's used for everything from
58knitting to rocket science. If you run into trouble, it's quite
59likely that someone else has already solved the problem you're
60facing. Once you've exhausted the documentation, please report bugs to us
8166b4e0 61at the GitHub issue tracker at https://github.com/Perl/perl5/issues
a0bda3fb
JV
62
63While it was current when we made it available, Perl is constantly evolving
d0b6580b
RGS
64and there may be a more recent version that fixes bugs you've run into or
65adds new features that you might find useful.
a0bda3fb
JV
66
67You can always find the latest version of perl on a CPAN (Comprehensive Perl
d33c0cb5 68Archive Network) site near you at https://www.cpan.org/src/
8d063cd8 69
285c5e42
DM
70If you want to submit a simple patch to the perl source, see the "SUPER
71QUICK PATCH GUIDE" in pod/perlhack.pod.
a687059c
LW
72
73Just a personal note: I want you to know that I create nice things like this
74because it pleases the Author of my story. If this bothers you, then your
75notion of Authorship needs some revision. But you can use perl anyway. :-)
76
42557cf4 77The author.
a0bda3fb
JV
78
79
42557cf4 80# LICENSING
a0bda3fb
JV
81
82This program is free software; you can redistribute it and/or modify
83it under the terms of either:
84
1831d2c9
RS
85a. the GNU General Public License as published by the Free
86 Software Foundation; either version 1, or (at your option) any
87 later version, or
a0bda3fb 88
1831d2c9 89b. the "Artistic License" which comes with this Kit.
a0bda3fb
JV
90
91This program is distributed in the hope that it will be useful,
92but WITHOUT ANY WARRANTY; without even the implied warranty of
93MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either
94the GNU General Public License or the Artistic License for more details.
95
96You should have received a copy of the Artistic License with this
97Kit, in the file named "Artistic". If not, I'll be glad to provide one.
98
99You should also have received a copy of the GNU General Public License
100along with this program in the file named "Copying". If not, write to the
ecd16862 101Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
8d9043d1 102Boston, MA 02110-1301, USA or visit their web page on the internet at
d33c0cb5 103https://www.gnu.org/copyleft/gpl.html.
a0bda3fb
JV
104
105For those of you that choose to use the GNU General Public License,
106my interpretation of the GNU General Public License is that no Perl
107script falls under the terms of the GPL unless you explicitly put
108said script under the terms of the GPL yourself. Furthermore, any
109object code linked with perl does not automatically fall under the
110terms of the GPL, provided such object code only adds definitions
111of subroutines and variables, and does not otherwise impair the
112resulting interpreter from executing any standard Perl script. I
113consider linking in C subroutines in this manner to be the moral
114equivalent of defining subroutines in the Perl language itself. You
115may sell such an object file as proprietary provided that you provide
116or offer to provide the Perl source, as specified by the GNU General
117Public License. (This is merely an alternate way of specifying input
118to the program.) You may also sell a binary produced by the dumping of
119a running Perl script that belongs to you, provided that you provide or
120offer to provide the Perl source as specified by the GPL. (The
121fact that a Perl interpreter and your code are in the same binary file
122is, in this case, a form of mere aggregation.) This is my interpretation
123of the GPL. If you still have concerns or difficulties understanding
124my intent, feel free to contact me. Of course, the Artistic License
125spells all this out for your protection, so you may prefer to use that.