Skip to Content
Clean Architecture: A Craftsman's Guide to Software Structure and Design
book

Clean Architecture: A Craftsman's Guide to Software Structure and Design

by Robert C. Martin
September 2017
Intermediate to advanced
432 pages
8h 20m
English
Pearson
Content preview from Clean Architecture: A Craftsman's Guide to Software Structure and Design

6FUNCTIONAL PROGRAMMING

Image

In many ways, the concepts of functional programming predate programming itself. This paradigm is strongly based on the l-calculus invented by Alonzo Church in the 1930s.

SQUARES OF INTEGERS

To explain what functional programming is, it’s best to examine some examples. Let’s investigate a simple problem: printing the squares of the first 25 integers.

In a language like Java, we might write the following:

public class Squint {   public static void main(String args[]) {     for (int i=0; i<25; i++)       System.out.println(i*i);   } }

In a language like Clojure, which is a derivative of Lisp, ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Software Architecture Patterns, 2nd Edition

Software Architecture Patterns, 2nd Edition

Mark Richards
Head First Software Architecture

Head First Software Architecture

Raju Gandhi, Mark Richards, Neal Ford
Design Patterns: Elements of Reusable Object-Oriented Software

Design Patterns: Elements of Reusable Object-Oriented Software

Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides

Publisher Resources

ISBN: 9780134494272