0% found this document useful (0 votes)
8 views

Quick Functional Programming Quick Programming 1st Edition David Matuszek 2024 scribd download

The document promotes the ebook 'Quick Functional Programming' by David Matuszek, which introduces functional programming concepts using Python, Java, and Scala. It emphasizes the simplicity and power of functional programming as a complement to conventional programming techniques. The ebook is available for download on ebookmeta.com, along with other recommended digital products.

Uploaded by

randeraayari
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views

Quick Functional Programming Quick Programming 1st Edition David Matuszek 2024 scribd download

The document promotes the ebook 'Quick Functional Programming' by David Matuszek, which introduces functional programming concepts using Python, Java, and Scala. It emphasizes the simplicity and power of functional programming as a complement to conventional programming techniques. The ebook is available for download on ebookmeta.com, along with other recommended digital products.

Uploaded by

randeraayari
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 30

Get the full ebook with Bonus Features for a Better Reading Experience on ebookmeta.

com

Quick Functional Programming Quick Programming


1st Edition David Matuszek

https://ebookmeta.com/product/quick-functional-programming-
quick-programming-1st-edition-david-matuszek/

OR CLICK HERE

DOWLOAD NOW

Download more ebook instantly today at https://ebookmeta.com


Recommended digital products (PDF, EPUB, MOBI) that
you can download immediately if you are interested.

Quick Java David Matuszek

https://ebookmeta.com/product/quick-java-david-matuszek/

ebookmeta.com

Quick Recursion 1st Edition David Matuszek

https://ebookmeta.com/product/quick-recursion-1st-edition-david-
matuszek/

ebookmeta.com

Programming Scala Scalability Functional Programming


Objects Third Edition Wampler Dean

https://ebookmeta.com/product/programming-scala-scalability-
functional-programming-objects-third-edition-wampler-dean/

ebookmeta.com

SKETCH LIKE AN ARCHITECT ADVANCED TECHNIQUES TOME 2 2nd


Edition David Dražil

https://ebookmeta.com/product/sketch-like-an-architect-advanced-
techniques-tome-2-2nd-edition-david-drazil/

ebookmeta.com
I Married An Incubus Regine Abel

https://ebookmeta.com/product/i-married-an-incubus-regine-abel/

ebookmeta.com

An Honorable Arrangement 1st Edition A S Fenichel

https://ebookmeta.com/product/an-honorable-arrangement-1st-edition-a-
s-fenichel/

ebookmeta.com

Warhammer Altdorf Crown of the Empire 4th Edition


Warhammer

https://ebookmeta.com/product/warhammer-altdorf-crown-of-the-
empire-4th-edition-warhammer/

ebookmeta.com

Under the Whispering Door T J Klune

https://ebookmeta.com/product/under-the-whispering-door-t-j-klune/

ebookmeta.com

Storyfun for Starters Level 1 Student s Book with Online


Activities and Home Fun Booklet 1 2nd Edition Karen Saxby

https://ebookmeta.com/product/storyfun-for-starters-level-1-student-s-
book-with-online-activities-and-home-fun-booklet-1-2nd-edition-karen-
saxby/
ebookmeta.com
Foundations of Game Engine Development Volume 1
Mathematics 1st Edition Eric Lengyel

https://ebookmeta.com/product/foundations-of-game-engine-development-
volume-1-mathematics-1st-edition-eric-lengyel/

ebookmeta.com
Quick Functional
Programming
Why learn functional programming? Isn’t that some compli-
cated ivory-­tower technique used only in obscure languages like
Haskell?

In fact, functional programming is actually very simple. It’s also


very powerful, as Haskell demonstrates by throwing away all the
conventional programming tools and using only functional pro-
gramming features. But it doesn’t have to be done that way.

Functional programming is a power tool that you can use in addi-


tion to all your usual tools, to whatever extent your current main-
stream language supports it. Most languages have at least basic
support.

In this book, we use Python and Java and, as a bonus, Scala. If you
prefer another language, there will be minor differences in syntax,
but the concepts are the same.

Give functional programming a try. You may be surprised


how much a single power tool can help you in your day-­to-­day
programming.
Quick Functional
Programming

David Matuszek
First edition published 2023
by CRC Press
6000 Broken Sound Parkway NW, Suite 300, Boca Raton, FL 33487-2742
and by CRC Press
4 Park Square, Milton Park, Abingdon, Oxon, OX14 4RN
CRC Press is an imprint of Taylor & Francis Group, LLC
© 2023 David Matuszek
Reasonable efforts have been made to publish reliable data and information, but
the author and publisher cannot assume responsibility for the validity of all
materials or the consequences of their use. The authors and publishers have
attempted to trace the copyright holders of all material reproduced in this
publication and apologize to copyright holders if permission to publish in this
form has not been obtained. If any copyright material has not been acknowledged
please write and let us know so we may rectify in any future reprint.
Except as permitted under U.S. Copyright Law, no part of this book may be
reprinted, reproduced, transmitted, or utilized in any form by any electronic,
mechanical, or other means, now known or hereafter invented, including
photocopying, microfilming, and recording, or in any information storage or
retrieval system, without written permission from the publishers.

For permission to photocopy or use material electronically from this work,


access www.copyright.com or contact the Copyright Clearance Center, Inc.
(CCC), 222 Rosewood Drive, Danvers, MA 01923, 978-750-8400. For works
that are not available on CCC please contact mpkbookspermissions@tandf.
co.uk
Trademark notice: Product or corporate names may be trademarks or registered
trademarks and are used only for identification and explanation without intent
to infringe.
ISBN: 978-1-032-41532-1 (hbk)
ISBN: 978-1-032-41531-4 (pbk)
ISBN: 978-1-003-35854-1 (ebk)
DOI: 10.1201/9781003358541
Typeset in Minion
by SPi Technologies India Pvt Ltd (Straive)
To all my students,
past, present, and future.
Contents

About the Author, xi


Preface, xiii

Chapter 1   ◾    What Is Functional Programming? 1

Chapter 2   ◾    Methods and Functions 5


2.1 Methods 6
2.1.1 Methods in Python 6
2.1.2 Methods in Java 7
2.1.3 Methods in Scala 9
2.2 Function Literals 10
2.2.1 Function Literals in Python 11
2.2.2 Function Literals in Java 12
2.2.3 Function Literals in Scala 13
2.3 Sorting Examples 14
2.3.1 Sorting in Python 14
2.3.2 Sorting in Java 16
2.3.3 Sorting in Scala 18

vii
viii   ◾   Contents

Chapter 3   ◾    Higher-Order Functions 21


3.1 Higher-Order Functions in Python 22
3.2 Higher-Order Functions in Java 25
3.3 Higher-Order Functions in Scala 27

Chapter 4   ◾    Functional Interfaces in Java 31


4.1 Single Abstract Methods 31
4.2 Anonymous Inner Classes 32
4.3 Defining Functional Interfaces 33
4.4 Method References 34
4.5 The Other Method Reference 37
4.6 Provided Functional Interfaces 38
4.6.1 IntPredicate 38
4.6.2 Function Composition 39
4.6.3 Predicates Again 41
4.6.4 Unary Operators 42
4.6.5 More Functions and Operators 43
4.6.6 Suppliers and Consumers 44

Chapter 5   ◾    If Expressions 47


5.1 If Expressions in Python 47
5.2 If Expressions in Java 48
5.3 If Expressions in Scala 49

Chapter 6   ◾    Comprehensions 51


6.1 List Comprehensions in Python 52
6.2 Comprehensions in Java 54
6.3 For Expressions in Scala 54
6.4 For Comprehensions in Scala 57
Contents   ◾   ix

Chapter 7   ◾    Closures 59


7.1 Closures in Python 60
7.2 Closures in Java 61
7.3 Closures in Scala 63
7.4 Closure Example 64

Chapter 8   ◾    Currying 67


8.1 Currying in Python 69
8.2 Currying in Java 71
8.3 Currying in Scala 72

Chapter 9   ◾    Function Composition 75


9.1 Function Composition in Python 75
9.2 Function Composition in Java 77
9.3 Function Composition in Scala 78

Chapter 10   ◾    Optional Values 79


10.1 Optional in Python 80
10.2 Optional in Java 80
10.3 Option in Scala 81

Chapter 11   ◾    Lists 83


11.1 Recursion 84
11.2 Lists in Python 86
11.3 Lists in Java 87
11.4 Lists in Scala 87

Chapter 12   ◾    Streams 91


12.1 Generators in Python 92
12.2 Streams in Java 92
x   ◾   Contents

12.3 Numeric Streams in Java 95


12.4 Streams in Scala 95

Chapter 13   ◾    Important Functions 97


13.1 Important Functions in Python 98
13.2 Important Functions in Java 99
13.3 Important Functions in Scala 102
13.4 Additional Functions in Scala 105

Chapter 14   ◾    Pipelines 107


14.1 Pipelines in Python 109
14.2 Pipelines in Java 110
14.2.1 Intermediate Operations 110
14.2.2 Terminal Operations 112
14.2.3 Collectors 114
14.2.4 Example 115
14.3 Pipelines in Scala 116

Chapter 15   ◾    Summary and Final Examples 119


15.1 Examples in Python 120
15.2 Examples in Java 122
15.3 Examples in Scala 123

Afterword 125

Index, 127
About the Author

I ’m David Matuszek, known to most of my students as “Dr.


Dave.”

I wrote my first program on punched cards in 1963 and immedi-


ately got hooked.

I taught my first computer classes in 1970, as a graduate student in


Computer Science at The University of Texas in Austin. I eventu-
ally got my PhD from there, and I’ve been teaching ever since.
Admittedly, I spent over a dozen years in industry, but even then,
I taught as an adjunct for Villanova university.

I finally escaped from industry and joined the Villanova faculty


full time for a few years and then moved to the University of
Pennsylvania, where I directed a Master’s program (MCIT,
Masters in Computer and Information Technology) for students
coming into computer science from another discipline.

Throughout my career, my main interests have been in artificial


intelligence (AI) and programming languages. I’ve used a lot of
programming languages.

I retired in 2017, but I can’t stop teaching, so I’m writing a series


of “quick start” books on programming and programming

xi
xii   ◾   About the Author

languages. I’ve also written two science fiction novels, Ice Jockey
and All True Value, and I expect to write more. Check them out!

And hey, if you’re a former student of mine, drop me a note. I’d


love to hear from you!

david.matuszek@gmail.com
Preface

Y ou probably think that functional programming (FP) is


something dreamed up by ivory-­ tower academics using
obscure languages that few people understand.

You’re right.

You probably think that those weird languages such as Haskell,


Standard ML, and OCaml are never going to be very popular with
ordinary programmers.

Right again.

But did you notice…

• That ivory-­tower academics are some pretty smart people?


• That the programming language you use every day, what-
ever it is, is getting more FP features?

“Pure” functional programming, abandoning all the conventional


programming techniques, really is difficult. But you don’t have to
do that. Think of it this way: Conventional programming consists
of a collection of hand tools, and FP adds a power tool to the mix.
Just one—it doesn’t do everything, and you still need all the other
tools (unless you’re an ivory-­tower academic), but where you can
use it, it saves a lot of work.
xiii
xiv   ◾   Preface

Here’s a spoiler: FP will let you replace many of your loops with
shorter, simpler, easier to understand function calls. Yes, there’s
some unfamiliar syntax involved, but it’s just syntax, and you can
get used to it very quickly. The new concepts, the parts you might
think are the most difficult, turn out to be trivially simple.

You may be surprised how much a single power tool can help you
in your day-­to-­day programming.

FP is coming into prominence now because it is a far better way to


write concurrent programs, suitable for multi-­core computers.
However, this is only a book about functional programming, not
about concurrent programming; that would require a far larger
volume.

Each chapter after the first begins with an explanation of some


particular concept of functional programming. After that, there
are sections exemplifying that concept in each of three languages.

• Python, because it is a simple, widely known language.


Python has only a few of the most basic FP features.
• Java, because it is widely known and has many of the FP
features. The developers of these features have done an
awesome job in fitting these features into a language that
was never designed to hold them.
• Scala, which has been designed from the ground up to be
both object oriented and functional, and therefore provides
the cleanest and most complete set of FP features.

I have tried to make this book accessible to programmers who


do not know Python or Scala. The FP features of these languages
can be understood without an in-­depth knowledge of the language
in which they occur. Unfortunately, no such claim can be made
for Java.
Other documents randomly have
different content
PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK

To protect the Project Gutenberg™ mission of promoting the


free distribution of electronic works, by using or distributing this
work (or any other work associated in any way with the phrase
“Project Gutenberg”), you agree to comply with all the terms of
the Full Project Gutenberg™ License available with this file or
online at www.gutenberg.org/license.

Section 1. General Terms of Use and


Redistributing Project Gutenberg™
electronic works
1.A. By reading or using any part of this Project Gutenberg™
electronic work, you indicate that you have read, understand,
agree to and accept all the terms of this license and intellectual
property (trademark/copyright) agreement. If you do not agree
to abide by all the terms of this agreement, you must cease
using and return or destroy all copies of Project Gutenberg™
electronic works in your possession. If you paid a fee for
obtaining a copy of or access to a Project Gutenberg™
electronic work and you do not agree to be bound by the terms
of this agreement, you may obtain a refund from the person or
entity to whom you paid the fee as set forth in paragraph 1.E.8.

1.B. “Project Gutenberg” is a registered trademark. It may only


be used on or associated in any way with an electronic work by
people who agree to be bound by the terms of this agreement.
There are a few things that you can do with most Project
Gutenberg™ electronic works even without complying with the
full terms of this agreement. See paragraph 1.C below. There
are a lot of things you can do with Project Gutenberg™
electronic works if you follow the terms of this agreement and
help preserve free future access to Project Gutenberg™
electronic works. See paragraph 1.E below.
1.C. The Project Gutenberg Literary Archive Foundation (“the
Foundation” or PGLAF), owns a compilation copyright in the
collection of Project Gutenberg™ electronic works. Nearly all the
individual works in the collection are in the public domain in the
United States. If an individual work is unprotected by copyright
law in the United States and you are located in the United
States, we do not claim a right to prevent you from copying,
distributing, performing, displaying or creating derivative works
based on the work as long as all references to Project
Gutenberg are removed. Of course, we hope that you will
support the Project Gutenberg™ mission of promoting free
access to electronic works by freely sharing Project Gutenberg™
works in compliance with the terms of this agreement for
keeping the Project Gutenberg™ name associated with the
work. You can easily comply with the terms of this agreement
by keeping this work in the same format with its attached full
Project Gutenberg™ License when you share it without charge
with others.

1.D. The copyright laws of the place where you are located also
govern what you can do with this work. Copyright laws in most
countries are in a constant state of change. If you are outside
the United States, check the laws of your country in addition to
the terms of this agreement before downloading, copying,
displaying, performing, distributing or creating derivative works
based on this work or any other Project Gutenberg™ work. The
Foundation makes no representations concerning the copyright
status of any work in any country other than the United States.

1.E. Unless you have removed all references to Project


Gutenberg:

1.E.1. The following sentence, with active links to, or other


immediate access to, the full Project Gutenberg™ License must
appear prominently whenever any copy of a Project
Gutenberg™ work (any work on which the phrase “Project
Gutenberg” appears, or with which the phrase “Project
Gutenberg” is associated) is accessed, displayed, performed,
viewed, copied or distributed:

This eBook is for the use of anyone anywhere in the United


States and most other parts of the world at no cost and
with almost no restrictions whatsoever. You may copy it,
give it away or re-use it under the terms of the Project
Gutenberg License included with this eBook or online at
www.gutenberg.org. If you are not located in the United
States, you will have to check the laws of the country
where you are located before using this eBook.

1.E.2. If an individual Project Gutenberg™ electronic work is


derived from texts not protected by U.S. copyright law (does not
contain a notice indicating that it is posted with permission of
the copyright holder), the work can be copied and distributed to
anyone in the United States without paying any fees or charges.
If you are redistributing or providing access to a work with the
phrase “Project Gutenberg” associated with or appearing on the
work, you must comply either with the requirements of
paragraphs 1.E.1 through 1.E.7 or obtain permission for the use
of the work and the Project Gutenberg™ trademark as set forth
in paragraphs 1.E.8 or 1.E.9.

1.E.3. If an individual Project Gutenberg™ electronic work is


posted with the permission of the copyright holder, your use and
distribution must comply with both paragraphs 1.E.1 through
1.E.7 and any additional terms imposed by the copyright holder.
Additional terms will be linked to the Project Gutenberg™
License for all works posted with the permission of the copyright
holder found at the beginning of this work.

1.E.4. Do not unlink or detach or remove the full Project


Gutenberg™ License terms from this work, or any files
containing a part of this work or any other work associated with
Project Gutenberg™.

1.E.5. Do not copy, display, perform, distribute or redistribute


this electronic work, or any part of this electronic work, without
prominently displaying the sentence set forth in paragraph 1.E.1
with active links or immediate access to the full terms of the
Project Gutenberg™ License.

1.E.6. You may convert to and distribute this work in any binary,
compressed, marked up, nonproprietary or proprietary form,
including any word processing or hypertext form. However, if
you provide access to or distribute copies of a Project
Gutenberg™ work in a format other than “Plain Vanilla ASCII” or
other format used in the official version posted on the official
Project Gutenberg™ website (www.gutenberg.org), you must,
at no additional cost, fee or expense to the user, provide a copy,
a means of exporting a copy, or a means of obtaining a copy
upon request, of the work in its original “Plain Vanilla ASCII” or
other form. Any alternate format must include the full Project
Gutenberg™ License as specified in paragraph 1.E.1.

1.E.7. Do not charge a fee for access to, viewing, displaying,


performing, copying or distributing any Project Gutenberg™
works unless you comply with paragraph 1.E.8 or 1.E.9.

1.E.8. You may charge a reasonable fee for copies of or


providing access to or distributing Project Gutenberg™
electronic works provided that:

• You pay a royalty fee of 20% of the gross profits you derive
from the use of Project Gutenberg™ works calculated using the
method you already use to calculate your applicable taxes. The
fee is owed to the owner of the Project Gutenberg™ trademark,
but he has agreed to donate royalties under this paragraph to
the Project Gutenberg Literary Archive Foundation. Royalty
payments must be paid within 60 days following each date on
which you prepare (or are legally required to prepare) your
periodic tax returns. Royalty payments should be clearly marked
as such and sent to the Project Gutenberg Literary Archive
Foundation at the address specified in Section 4, “Information
about donations to the Project Gutenberg Literary Archive
Foundation.”

• You provide a full refund of any money paid by a user who


notifies you in writing (or by e-mail) within 30 days of receipt
that s/he does not agree to the terms of the full Project
Gutenberg™ License. You must require such a user to return or
destroy all copies of the works possessed in a physical medium
and discontinue all use of and all access to other copies of
Project Gutenberg™ works.

• You provide, in accordance with paragraph 1.F.3, a full refund of


any money paid for a work or a replacement copy, if a defect in
the electronic work is discovered and reported to you within 90
days of receipt of the work.

• You comply with all other terms of this agreement for free
distribution of Project Gutenberg™ works.

1.E.9. If you wish to charge a fee or distribute a Project


Gutenberg™ electronic work or group of works on different
terms than are set forth in this agreement, you must obtain
permission in writing from the Project Gutenberg Literary
Archive Foundation, the manager of the Project Gutenberg™
trademark. Contact the Foundation as set forth in Section 3
below.

1.F.

1.F.1. Project Gutenberg volunteers and employees expend


considerable effort to identify, do copyright research on,
transcribe and proofread works not protected by U.S. copyright
law in creating the Project Gutenberg™ collection. Despite these
efforts, Project Gutenberg™ electronic works, and the medium
on which they may be stored, may contain “Defects,” such as,
but not limited to, incomplete, inaccurate or corrupt data,
transcription errors, a copyright or other intellectual property
infringement, a defective or damaged disk or other medium, a
computer virus, or computer codes that damage or cannot be
read by your equipment.

1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except


for the “Right of Replacement or Refund” described in
paragraph 1.F.3, the Project Gutenberg Literary Archive
Foundation, the owner of the Project Gutenberg™ trademark,
and any other party distributing a Project Gutenberg™ electronic
work under this agreement, disclaim all liability to you for
damages, costs and expenses, including legal fees. YOU AGREE
THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT
EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE
THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY
DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE
TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL,
PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE
NOTICE OF THE POSSIBILITY OF SUCH DAMAGE.

1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you


discover a defect in this electronic work within 90 days of
receiving it, you can receive a refund of the money (if any) you
paid for it by sending a written explanation to the person you
received the work from. If you received the work on a physical
medium, you must return the medium with your written
explanation. The person or entity that provided you with the
defective work may elect to provide a replacement copy in lieu
of a refund. If you received the work electronically, the person
or entity providing it to you may choose to give you a second
opportunity to receive the work electronically in lieu of a refund.
If the second copy is also defective, you may demand a refund
in writing without further opportunities to fix the problem.

1.F.4. Except for the limited right of replacement or refund set


forth in paragraph 1.F.3, this work is provided to you ‘AS-IS’,
WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.

1.F.5. Some states do not allow disclaimers of certain implied


warranties or the exclusion or limitation of certain types of
damages. If any disclaimer or limitation set forth in this
agreement violates the law of the state applicable to this
agreement, the agreement shall be interpreted to make the
maximum disclaimer or limitation permitted by the applicable
state law. The invalidity or unenforceability of any provision of
this agreement shall not void the remaining provisions.

1.F.6. INDEMNITY - You agree to indemnify and hold the


Foundation, the trademark owner, any agent or employee of the
Foundation, anyone providing copies of Project Gutenberg™
electronic works in accordance with this agreement, and any
volunteers associated with the production, promotion and
distribution of Project Gutenberg™ electronic works, harmless
from all liability, costs and expenses, including legal fees, that
arise directly or indirectly from any of the following which you
do or cause to occur: (a) distribution of this or any Project
Gutenberg™ work, (b) alteration, modification, or additions or
deletions to any Project Gutenberg™ work, and (c) any Defect
you cause.

Section 2. Information about the Mission


of Project Gutenberg™
Project Gutenberg™ is synonymous with the free distribution of
electronic works in formats readable by the widest variety of
computers including obsolete, old, middle-aged and new
computers. It exists because of the efforts of hundreds of
volunteers and donations from people in all walks of life.

Volunteers and financial support to provide volunteers with the


assistance they need are critical to reaching Project
Gutenberg™’s goals and ensuring that the Project Gutenberg™
collection will remain freely available for generations to come. In
2001, the Project Gutenberg Literary Archive Foundation was
created to provide a secure and permanent future for Project
Gutenberg™ and future generations. To learn more about the
Project Gutenberg Literary Archive Foundation and how your
efforts and donations can help, see Sections 3 and 4 and the
Foundation information page at www.gutenberg.org.

Section 3. Information about the Project


Gutenberg Literary Archive Foundation
The Project Gutenberg Literary Archive Foundation is a non-
profit 501(c)(3) educational corporation organized under the
laws of the state of Mississippi and granted tax exempt status
by the Internal Revenue Service. The Foundation’s EIN or
federal tax identification number is 64-6221541. Contributions
to the Project Gutenberg Literary Archive Foundation are tax
deductible to the full extent permitted by U.S. federal laws and
your state’s laws.

The Foundation’s business office is located at 809 North 1500


West, Salt Lake City, UT 84116, (801) 596-1887. Email contact
links and up to date contact information can be found at the
Foundation’s website and official page at
www.gutenberg.org/contact
Section 4. Information about Donations to
the Project Gutenberg Literary Archive
Foundation
Project Gutenberg™ depends upon and cannot survive without
widespread public support and donations to carry out its mission
of increasing the number of public domain and licensed works
that can be freely distributed in machine-readable form
accessible by the widest array of equipment including outdated
equipment. Many small donations ($1 to $5,000) are particularly
important to maintaining tax exempt status with the IRS.

The Foundation is committed to complying with the laws


regulating charities and charitable donations in all 50 states of
the United States. Compliance requirements are not uniform
and it takes a considerable effort, much paperwork and many
fees to meet and keep up with these requirements. We do not
solicit donations in locations where we have not received written
confirmation of compliance. To SEND DONATIONS or determine
the status of compliance for any particular state visit
www.gutenberg.org/donate.

While we cannot and do not solicit contributions from states


where we have not met the solicitation requirements, we know
of no prohibition against accepting unsolicited donations from
donors in such states who approach us with offers to donate.

International donations are gratefully accepted, but we cannot


make any statements concerning tax treatment of donations
received from outside the United States. U.S. laws alone swamp
our small staff.

Please check the Project Gutenberg web pages for current


donation methods and addresses. Donations are accepted in a
number of other ways including checks, online payments and
credit card donations. To donate, please visit:
www.gutenberg.org/donate.

Section 5. General Information About


Project Gutenberg™ electronic works
Professor Michael S. Hart was the originator of the Project
Gutenberg™ concept of a library of electronic works that could
be freely shared with anyone. For forty years, he produced and
distributed Project Gutenberg™ eBooks with only a loose
network of volunteer support.

Project Gutenberg™ eBooks are often created from several


printed editions, all of which are confirmed as not protected by
copyright in the U.S. unless a copyright notice is included. Thus,
we do not necessarily keep eBooks in compliance with any
particular paper edition.

Most people start at our website which has the main PG search
facility: www.gutenberg.org.

This website includes information about Project Gutenberg™,


including how to make donations to the Project Gutenberg
Literary Archive Foundation, how to help produce our new
eBooks, and how to subscribe to our email newsletter to hear
about new eBooks.

You might also like