SlideShare a Scribd company logo
The Clojure
Programming
Language
CS571ProgrammingLanguages
Brian Gracin
Jenny Pawlak
Jacquelyn S Victoria
90 Second Overview…..
Clojure is…..
- A dialect of Lisp
- General purpose language
- Emphasizes functional programming
- Runs on the Java Virtual Machine
- Designed for Concurrency
- Used in industry -- CapitalOne, Amazon, Facebook, Oracle
https://gooroo.io/GoorooTHINK/Article/16300/Programming-languages--salaries-and-demand-May-2015
Background
Simplicity
“We suffer from so much incidental complexity in traditional OO languages, both
syntactic and semantic, that I don’t think we even realise it anymore. I wanted to
make ‘doing the right thing’ not a matter of convention and discipline, but the
default. I wanted a solid concurrency story and great interoperability with existing
Java libraries,.” -Rich Hickey, creator of Clojure
Rich Hickey, Clojure, Benevolent Dictator for Life
CLOJURE:
- First Available: 2007
- Latest Stable Release: 1.8 January 19, 2016
Clojure’s Influences
Why Lisp?
● Entire Language:
○ 7 functions
○ 2 labels
Why JVM?
● Familiar - run just like Java apps
● Use some familiar Java objects
● Many available libraries
● Established track record
● Now open-sourced.
http://www.braveclojure.com/java/ (Chapter 12)
clojure.org/about/rationale
What are Clojure’s Characteristics?
● Functional - succinct, understandable, reusable
● Defaults to Immutability
○ Simplifies reasoning and testing
○ Easier to share objects
○ Thread safe
● but allows mutability!
● Code-as-Data (Homoiconicity)
● Syntactic Abstraction
Immutable objects are always thread safe.
—Brian Goetz, Java Concurrency in Practice
The Joy of Clojure Chapter 6.
Examples
Homoiconicity
Code written in the language is encoded as
data structures that the language has tools to
manipulate
Syntatic Abstraction
Permits the definition of new language
constructs whose meaning can be understood
in terms of static translation into the core
language.As Data:
As Code.
LISP
Java
functional
Java’s
Librariesiteration
interfaces
Immutable
datatypes
Lazy
evaluation
Clojure
Core
Truthiness
What is truthy?
● true
● 1
● (= 1 1)
● 0
● “False”
● []
● Literally any value but false or nil
What is falsey?
● false
● nil
● (= 3 1)
Nil Punning: Handling Clojure’s
empty sequences that are Truthy
Every[thing] is "true" all the time, unless it is nil or false.
—Brian Goetz,
The Joy of Clojure
Clojure Data Structures
● They are immutable by default
● Support metadata
● Implement java.lang.Iterable
● Implement the read-only part of java.util.Collection
http://clojure.org/reference/data_structures
Data Collection Types - Part 1
Lists
Singly linked lists
First item in calling position
Heterogeneous elements
Compare to Haskell:
Homogeneous lists
Vectors
Simply evaluate each item in order.
Quick look-up times
Heterogeneous elements
No calling position
Data Collection Types - Part 2
Maps
Maps store unique keys and one value per
key (dictionaries and hashes)
Two types:
1. Hashed: key has hashCode, equals
2. Sorted: implement Comparable
Sets
Store zero or more unique items
Some Mutable Data Structures!
Atoms
Managed shared synchronous independent
state
Refs
Transaction references
Safe shared use of mutable storage
Require SW transactional memory system
Agents
Independent, asynchronous change of
individual locations
Only allow change due to an action
Var
Mutable storage location
Can be dynamically rebound per thread
Ensure safety through thread isolation
MUTABLE DATA Type Comparison
Functions
First Class
Created on demand
Stored in a data structure
Passed as an argument
Returned as a value
Higher-Order
Takes one or more function args
Returns function as result
Pure Functions
ALWAYS return same result
No observable side effects
(defn
[arg1 arg2]
(;function code
))
def or defn?
● Both bind a symbol or name
● def is only evaluated once
● defn is evaluated every time it is called
Examples
Quick Comparison
Haskell:
average numbers = (fold (+) (numbers) ) / (length(numbers))
Clojure:
(defn average [numbers] (/ (reduce + numbers) (count numbers)))
Quick Comparison
Haskell:
fact x = if x == 0 then 1 else x * fact(x-1)
Clojure:
(defn factorial [n] (if (= n 0) 1 (* n (factorial (dec n)))))
Code example
https://rosettacode.org/wiki/Palindrome_detection#Clojure
Intermediate
Higher-Order Functions
Map
>(map * [1 2 3 4] [5 6 7 8])
(5 12 21 32)
Reduce
>(reduce max [0 -3 10 48])
48
Comp
((comp str - +) 4 5) is equivalent to
(str ( - ( + 4 5)))
Partial
(defn add10 (partial + 10))
>(add10 3)
13
>(add10 3 4 8)
25
Anonymous Functions
Fn
>(map (fn [x] (* x x)) (range 1 10))
(1 4 9 16 25 36 49 64 81)
Macros
(defmacro infix
[infixed]
(list (second infixed)
(first infixed)
(last infixed)))
>(1 + 2)
error
>(infix (1 + 2))
3
Java Interop
Accessing member functions
>(.toUpperCase "fred")
"FRED"
>(Math/pow 2 4)
16
( proxy [class-and-interfaces] [args]
fs+)
Concurrency
Doseq
Do over a sequence
Dosync
Do all or nothing
Future
Generate a thread
Delay
Bind function but don’t evaluate
Promise
Create a binding with no value
Uses
Clojure Shortcomings:
● Dynamic type checking
● Doesn’t scale well: code size, team size, time elapsed
● Startup time
● If JVM is not a good solution, then Clojure isn’t either
○ Systems programming limitations
○ Real-Time
http://martintrojer.github.io/beyond-clojure/2016/04/19/beyond-clojure-prelude
https://www.quora.com/What-is-clojure-bad-at
Clojure in Industry
Clojure in Industry
The Boeing 737 MAX Onboard Maintenance Function is 32,000 lines of Clojure.
First time Clojure used in aircraft software.
One of the largest code bases to date.
When to choose Clojure?
Handle large amounts of data with significant hardware limitations.
When you want more concise code, easier to test and debug.
Easier to get over 90% coverage with unit testing.
When JVM or CLR can be used.
Clojure developers are the
happiest developers
From an analysis of Reddit comments,
http://www.itworld.com/article/2693998/big-data/clojure-
developers-are-the-happiest-developers.html
Online Resources/Tutorials
Clojure.org
Clojuredocs.org
Clojure-doc.org
Clojure-by-example
ClojureTV (Youtube channel)
Clojure for the Brave and True
Further Info
The Joy of Clojure
Book by Chris Houser and Michael Fogus
Clojure Programming
Book by By Chas Emerick, Brian Carper, Christophe Grand
Simple Made Easy
Video by Rich Hickey

More Related Content

What's hot

Log management with ELK
Log management with ELKLog management with ELK
Log management with ELK
Geert Pante
 
ClickHouse Features for Advanced Users, by Aleksei Milovidov
ClickHouse Features for Advanced Users, by Aleksei MilovidovClickHouse Features for Advanced Users, by Aleksei Milovidov
ClickHouse Features for Advanced Users, by Aleksei Milovidov
Altinity Ltd
 
Linux Memory Management
Linux Memory ManagementLinux Memory Management
Linux Memory Management
Anil Kumar Pugalia
 
Data profiling in Apache Calcite
Data profiling in Apache CalciteData profiling in Apache Calcite
Data profiling in Apache Calcite
DataWorks Summit
 
YOW2018 Cloud Performance Root Cause Analysis at Netflix
YOW2018 Cloud Performance Root Cause Analysis at NetflixYOW2018 Cloud Performance Root Cause Analysis at Netflix
YOW2018 Cloud Performance Root Cause Analysis at Netflix
Brendan Gregg
 
Elasticsearch for beginners
Elasticsearch for beginnersElasticsearch for beginners
Elasticsearch for beginners
Neil Baker
 
01 oracle architecture
01 oracle architecture01 oracle architecture
01 oracle architecture
Smitha Padmanabhan
 
Linux boot-time
Linux boot-timeLinux boot-time
Linux boot-time
Andrea Righi
 
Centralized log-management-with-elastic-stack
Centralized log-management-with-elastic-stackCentralized log-management-with-elastic-stack
Centralized log-management-with-elastic-stack
Rich Lee
 
What is in a Lucene index?
What is in a Lucene index?What is in a Lucene index?
What is in a Lucene index?
lucenerevolution
 
Intro to Elasticsearch
Intro to ElasticsearchIntro to Elasticsearch
Intro to Elasticsearch
Clifford James
 
Callback Function
Callback FunctionCallback Function
Callback Function
Roland San Nicolas
 
Mutual exclusion and sync
Mutual exclusion and syncMutual exclusion and sync
Mutual exclusion and sync
Dr. C.V. Suresh Babu
 
Chapter 11 - File System Implementation
Chapter 11 - File System ImplementationChapter 11 - File System Implementation
Chapter 11 - File System Implementation
Wayne Jones Jnr
 
Introduction to elasticsearch
Introduction to elasticsearchIntroduction to elasticsearch
Introduction to elasticsearch
pmanvi
 
Linux Internals - Part I
Linux Internals - Part ILinux Internals - Part I
Kafka replication apachecon_2013
Kafka replication apachecon_2013Kafka replication apachecon_2013
Kafka replication apachecon_2013
Jun Rao
 
Cluster computing
Cluster computingCluster computing
Cluster computing
Kajal Thakkar
 
Learn how to addressing medical and industrial challenges with BlackBerry QNX...
Learn how to addressing medical and industrial challenges with BlackBerry QNX...Learn how to addressing medical and industrial challenges with BlackBerry QNX...
Learn how to addressing medical and industrial challenges with BlackBerry QNX...
Qt
 
Algebraic Data Types for Data Oriented Programming - From Haskell and Scala t...
Algebraic Data Types forData Oriented Programming - From Haskell and Scala t...Algebraic Data Types forData Oriented Programming - From Haskell and Scala t...
Algebraic Data Types for Data Oriented Programming - From Haskell and Scala t...
Philip Schwarz
 

What's hot (20)

Log management with ELK
Log management with ELKLog management with ELK
Log management with ELK
 
ClickHouse Features for Advanced Users, by Aleksei Milovidov
ClickHouse Features for Advanced Users, by Aleksei MilovidovClickHouse Features for Advanced Users, by Aleksei Milovidov
ClickHouse Features for Advanced Users, by Aleksei Milovidov
 
Linux Memory Management
Linux Memory ManagementLinux Memory Management
Linux Memory Management
 
Data profiling in Apache Calcite
Data profiling in Apache CalciteData profiling in Apache Calcite
Data profiling in Apache Calcite
 
YOW2018 Cloud Performance Root Cause Analysis at Netflix
YOW2018 Cloud Performance Root Cause Analysis at NetflixYOW2018 Cloud Performance Root Cause Analysis at Netflix
YOW2018 Cloud Performance Root Cause Analysis at Netflix
 
Elasticsearch for beginners
Elasticsearch for beginnersElasticsearch for beginners
Elasticsearch for beginners
 
01 oracle architecture
01 oracle architecture01 oracle architecture
01 oracle architecture
 
Linux boot-time
Linux boot-timeLinux boot-time
Linux boot-time
 
Centralized log-management-with-elastic-stack
Centralized log-management-with-elastic-stackCentralized log-management-with-elastic-stack
Centralized log-management-with-elastic-stack
 
What is in a Lucene index?
What is in a Lucene index?What is in a Lucene index?
What is in a Lucene index?
 
Intro to Elasticsearch
Intro to ElasticsearchIntro to Elasticsearch
Intro to Elasticsearch
 
Callback Function
Callback FunctionCallback Function
Callback Function
 
Mutual exclusion and sync
Mutual exclusion and syncMutual exclusion and sync
Mutual exclusion and sync
 
Chapter 11 - File System Implementation
Chapter 11 - File System ImplementationChapter 11 - File System Implementation
Chapter 11 - File System Implementation
 
Introduction to elasticsearch
Introduction to elasticsearchIntroduction to elasticsearch
Introduction to elasticsearch
 
Linux Internals - Part I
Linux Internals - Part ILinux Internals - Part I
Linux Internals - Part I
 
Kafka replication apachecon_2013
Kafka replication apachecon_2013Kafka replication apachecon_2013
Kafka replication apachecon_2013
 
Cluster computing
Cluster computingCluster computing
Cluster computing
 
Learn how to addressing medical and industrial challenges with BlackBerry QNX...
Learn how to addressing medical and industrial challenges with BlackBerry QNX...Learn how to addressing medical and industrial challenges with BlackBerry QNX...
Learn how to addressing medical and industrial challenges with BlackBerry QNX...
 
Algebraic Data Types for Data Oriented Programming - From Haskell and Scala t...
Algebraic Data Types forData Oriented Programming - From Haskell and Scala t...Algebraic Data Types forData Oriented Programming - From Haskell and Scala t...
Algebraic Data Types for Data Oriented Programming - From Haskell and Scala t...
 

Similar to Introductory Clojure Presentation

Getting started with Clojure
Getting started with ClojureGetting started with Clojure
Getting started with Clojure
John Stevenson
 
Clojure made-simple - John Stevenson
Clojure made-simple - John StevensonClojure made-simple - John Stevenson
Clojure made-simple - John Stevenson
JAX London
 
Exploring Clojurescript
Exploring ClojurescriptExploring Clojurescript
Exploring Clojurescript
Luke Donnet
 
Programming with Freedom & Joy
Programming with Freedom & JoyProgramming with Freedom & Joy
Programming with Freedom & Joy
Hildeberto Mendonça
 
Clojure intro
Clojure introClojure intro
Clojure intro
Basav Nagur
 
ClojureScript for the web
ClojureScript for the webClojureScript for the web
ClojureScript for the web
Michiel Borkent
 
Functional (web) development with Clojure
Functional (web) development with ClojureFunctional (web) development with Clojure
Functional (web) development with Clojure
Henrik Eneroth
 
Pune Clojure Course Outline
Pune Clojure Course OutlinePune Clojure Course Outline
Pune Clojure Course Outline
Baishampayan Ghose
 
Clojure
ClojureClojure
Clojure
alandipert
 
Clojure and The Robot Apocalypse
Clojure and The Robot ApocalypseClojure and The Robot Apocalypse
Clojure and The Robot Apocalypse
elliando dias
 
A Taste of Clojure
A Taste of ClojureA Taste of Clojure
A Taste of Clojure
David Leung
 
Clojure Intro
Clojure IntroClojure Intro
Clojure Intro
thnetos
 
Dynamic Python
Dynamic PythonDynamic Python
Dynamic Python
Chui-Wen Chiu
 
Clojure for Java developers
Clojure for Java developersClojure for Java developers
Clojure for Java developers
John Stevenson
 
Javascript Performance
Javascript PerformanceJavascript Performance
Javascript Performance
olivvv
 
Indic threads pune12-polyglot & functional programming on jvm
Indic threads pune12-polyglot & functional programming on jvmIndic threads pune12-polyglot & functional programming on jvm
Indic threads pune12-polyglot & functional programming on jvm
IndicThreads
 
Clojure and Modularity
Clojure and ModularityClojure and Modularity
Clojure and Modularity
elliando dias
 
Beyond PITS, Functional Principles for Software Architecture
Beyond PITS, Functional Principles for Software ArchitectureBeyond PITS, Functional Principles for Software Architecture
Beyond PITS, Functional Principles for Software Architecture
Jayaram Sankaranarayanan
 
Exploiting Concurrency with Dynamic Languages
Exploiting Concurrency with Dynamic LanguagesExploiting Concurrency with Dynamic Languages
Exploiting Concurrency with Dynamic Languages
Tobias Lindaaker
 
All of javascript
All of javascriptAll of javascript
All of javascript
Togakangaroo
 

Similar to Introductory Clojure Presentation (20)

Getting started with Clojure
Getting started with ClojureGetting started with Clojure
Getting started with Clojure
 
Clojure made-simple - John Stevenson
Clojure made-simple - John StevensonClojure made-simple - John Stevenson
Clojure made-simple - John Stevenson
 
Exploring Clojurescript
Exploring ClojurescriptExploring Clojurescript
Exploring Clojurescript
 
Programming with Freedom & Joy
Programming with Freedom & JoyProgramming with Freedom & Joy
Programming with Freedom & Joy
 
Clojure intro
Clojure introClojure intro
Clojure intro
 
ClojureScript for the web
ClojureScript for the webClojureScript for the web
ClojureScript for the web
 
Functional (web) development with Clojure
Functional (web) development with ClojureFunctional (web) development with Clojure
Functional (web) development with Clojure
 
Pune Clojure Course Outline
Pune Clojure Course OutlinePune Clojure Course Outline
Pune Clojure Course Outline
 
Clojure
ClojureClojure
Clojure
 
Clojure and The Robot Apocalypse
Clojure and The Robot ApocalypseClojure and The Robot Apocalypse
Clojure and The Robot Apocalypse
 
A Taste of Clojure
A Taste of ClojureA Taste of Clojure
A Taste of Clojure
 
Clojure Intro
Clojure IntroClojure Intro
Clojure Intro
 
Dynamic Python
Dynamic PythonDynamic Python
Dynamic Python
 
Clojure for Java developers
Clojure for Java developersClojure for Java developers
Clojure for Java developers
 
Javascript Performance
Javascript PerformanceJavascript Performance
Javascript Performance
 
Indic threads pune12-polyglot & functional programming on jvm
Indic threads pune12-polyglot & functional programming on jvmIndic threads pune12-polyglot & functional programming on jvm
Indic threads pune12-polyglot & functional programming on jvm
 
Clojure and Modularity
Clojure and ModularityClojure and Modularity
Clojure and Modularity
 
Beyond PITS, Functional Principles for Software Architecture
Beyond PITS, Functional Principles for Software ArchitectureBeyond PITS, Functional Principles for Software Architecture
Beyond PITS, Functional Principles for Software Architecture
 
Exploiting Concurrency with Dynamic Languages
Exploiting Concurrency with Dynamic LanguagesExploiting Concurrency with Dynamic Languages
Exploiting Concurrency with Dynamic Languages
 
All of javascript
All of javascriptAll of javascript
All of javascript
 

Recently uploaded

How to write a program in any programming language
How to write a program in any programming languageHow to write a program in any programming language
How to write a program in any programming language
Rakesh Kumar R
 
E-commerce Development Services- Hornet Dynamics
E-commerce Development Services- Hornet DynamicsE-commerce Development Services- Hornet Dynamics
E-commerce Development Services- Hornet Dynamics
Hornet Dynamics
 
Empowering Growth with Best Software Development Company in Noida - Deuglo
Empowering Growth with Best Software  Development Company in Noida - DeugloEmpowering Growth with Best Software  Development Company in Noida - Deuglo
Empowering Growth with Best Software Development Company in Noida - Deuglo
Deuglo Infosystem Pvt Ltd
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j
 
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling ExtensionsUI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
Peter Muessig
 
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Crescat
 
Graspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code AnalysisGraspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code Analysis
Aftab Hussain
 
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CDKuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
rodomar2
 
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
kalichargn70th171
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Łukasz Chruściel
 
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, FactsALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
Green Software Development
 
Fundamentals of Programming and Language Processors
Fundamentals of Programming and Language ProcessorsFundamentals of Programming and Language Processors
Fundamentals of Programming and Language Processors
Rakesh Kumar R
 
Oracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptxOracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptx
Remote DBA Services
 
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
XfilesPro
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j
 
UI5con 2024 - Bring Your Own Design System
UI5con 2024 - Bring Your Own Design SystemUI5con 2024 - Bring Your Own Design System
UI5con 2024 - Bring Your Own Design System
Peter Muessig
 
Using Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional SafetyUsing Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional Safety
Ayan Halder
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
SOCRadar
 
OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024
OpenMetadata
 
Hand Rolled Applicative User Validation Code Kata
Hand Rolled Applicative User ValidationCode KataHand Rolled Applicative User ValidationCode Kata
Hand Rolled Applicative User Validation Code Kata
Philip Schwarz
 

Recently uploaded (20)

How to write a program in any programming language
How to write a program in any programming languageHow to write a program in any programming language
How to write a program in any programming language
 
E-commerce Development Services- Hornet Dynamics
E-commerce Development Services- Hornet DynamicsE-commerce Development Services- Hornet Dynamics
E-commerce Development Services- Hornet Dynamics
 
Empowering Growth with Best Software Development Company in Noida - Deuglo
Empowering Growth with Best Software  Development Company in Noida - DeugloEmpowering Growth with Best Software  Development Company in Noida - Deuglo
Empowering Growth with Best Software Development Company in Noida - Deuglo
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
 
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling ExtensionsUI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
UI5con 2024 - Boost Your Development Experience with UI5 Tooling Extensions
 
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
Introducing Crescat - Event Management Software for Venues, Festivals and Eve...
 
Graspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code AnalysisGraspan: A Big Data System for Big Code Analysis
Graspan: A Big Data System for Big Code Analysis
 
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CDKuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
KuberTENes Birthday Bash Guadalajara - Introducción a Argo CD
 
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
 
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, FactsALGIT - Assembly Line for Green IT - Numbers, Data, Facts
ALGIT - Assembly Line for Green IT - Numbers, Data, Facts
 
Fundamentals of Programming and Language Processors
Fundamentals of Programming and Language ProcessorsFundamentals of Programming and Language Processors
Fundamentals of Programming and Language Processors
 
Oracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptxOracle 23c New Features For DBAs and Developers.pptx
Oracle 23c New Features For DBAs and Developers.pptx
 
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
 
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit ParisNeo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
Neo4j - Product Vision and Knowledge Graphs - GraphSummit Paris
 
UI5con 2024 - Bring Your Own Design System
UI5con 2024 - Bring Your Own Design SystemUI5con 2024 - Bring Your Own Design System
UI5con 2024 - Bring Your Own Design System
 
Using Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional SafetyUsing Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional Safety
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
 
OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024OpenMetadata Community Meeting - 5th June 2024
OpenMetadata Community Meeting - 5th June 2024
 
Hand Rolled Applicative User Validation Code Kata
Hand Rolled Applicative User ValidationCode KataHand Rolled Applicative User ValidationCode Kata
Hand Rolled Applicative User Validation Code Kata
 

Introductory Clojure Presentation

  • 2. 90 Second Overview….. Clojure is….. - A dialect of Lisp - General purpose language - Emphasizes functional programming - Runs on the Java Virtual Machine - Designed for Concurrency - Used in industry -- CapitalOne, Amazon, Facebook, Oracle
  • 5. Simplicity “We suffer from so much incidental complexity in traditional OO languages, both syntactic and semantic, that I don’t think we even realise it anymore. I wanted to make ‘doing the right thing’ not a matter of convention and discipline, but the default. I wanted a solid concurrency story and great interoperability with existing Java libraries,.” -Rich Hickey, creator of Clojure Rich Hickey, Clojure, Benevolent Dictator for Life CLOJURE: - First Available: 2007 - Latest Stable Release: 1.8 January 19, 2016
  • 7. Why Lisp? ● Entire Language: ○ 7 functions ○ 2 labels
  • 8. Why JVM? ● Familiar - run just like Java apps ● Use some familiar Java objects ● Many available libraries ● Established track record ● Now open-sourced. http://www.braveclojure.com/java/ (Chapter 12) clojure.org/about/rationale
  • 9. What are Clojure’s Characteristics? ● Functional - succinct, understandable, reusable ● Defaults to Immutability ○ Simplifies reasoning and testing ○ Easier to share objects ○ Thread safe ● but allows mutability! ● Code-as-Data (Homoiconicity) ● Syntactic Abstraction Immutable objects are always thread safe. —Brian Goetz, Java Concurrency in Practice The Joy of Clojure Chapter 6.
  • 10. Examples Homoiconicity Code written in the language is encoded as data structures that the language has tools to manipulate Syntatic Abstraction Permits the definition of new language constructs whose meaning can be understood in terms of static translation into the core language.As Data: As Code.
  • 12. Core
  • 13. Truthiness What is truthy? ● true ● 1 ● (= 1 1) ● 0 ● “False” ● [] ● Literally any value but false or nil What is falsey? ● false ● nil ● (= 3 1) Nil Punning: Handling Clojure’s empty sequences that are Truthy Every[thing] is "true" all the time, unless it is nil or false. —Brian Goetz, The Joy of Clojure
  • 14. Clojure Data Structures ● They are immutable by default ● Support metadata ● Implement java.lang.Iterable ● Implement the read-only part of java.util.Collection http://clojure.org/reference/data_structures
  • 15. Data Collection Types - Part 1 Lists Singly linked lists First item in calling position Heterogeneous elements Compare to Haskell: Homogeneous lists Vectors Simply evaluate each item in order. Quick look-up times Heterogeneous elements No calling position
  • 16. Data Collection Types - Part 2 Maps Maps store unique keys and one value per key (dictionaries and hashes) Two types: 1. Hashed: key has hashCode, equals 2. Sorted: implement Comparable Sets Store zero or more unique items
  • 17. Some Mutable Data Structures! Atoms Managed shared synchronous independent state Refs Transaction references Safe shared use of mutable storage Require SW transactional memory system Agents Independent, asynchronous change of individual locations Only allow change due to an action Var Mutable storage location Can be dynamically rebound per thread Ensure safety through thread isolation
  • 18. MUTABLE DATA Type Comparison
  • 19. Functions First Class Created on demand Stored in a data structure Passed as an argument Returned as a value Higher-Order Takes one or more function args Returns function as result Pure Functions ALWAYS return same result No observable side effects (defn [arg1 arg2] (;function code )) def or defn? ● Both bind a symbol or name ● def is only evaluated once ● defn is evaluated every time it is called
  • 21. Quick Comparison Haskell: average numbers = (fold (+) (numbers) ) / (length(numbers)) Clojure: (defn average [numbers] (/ (reduce + numbers) (count numbers)))
  • 22. Quick Comparison Haskell: fact x = if x == 0 then 1 else x * fact(x-1) Clojure: (defn factorial [n] (if (= n 0) 1 (* n (factorial (dec n)))))
  • 25. Higher-Order Functions Map >(map * [1 2 3 4] [5 6 7 8]) (5 12 21 32) Reduce >(reduce max [0 -3 10 48]) 48 Comp ((comp str - +) 4 5) is equivalent to (str ( - ( + 4 5))) Partial (defn add10 (partial + 10)) >(add10 3) 13 >(add10 3 4 8) 25
  • 26. Anonymous Functions Fn >(map (fn [x] (* x x)) (range 1 10)) (1 4 9 16 25 36 49 64 81)
  • 27. Macros (defmacro infix [infixed] (list (second infixed) (first infixed) (last infixed))) >(1 + 2) error >(infix (1 + 2)) 3
  • 28. Java Interop Accessing member functions >(.toUpperCase "fred") "FRED" >(Math/pow 2 4) 16 ( proxy [class-and-interfaces] [args] fs+)
  • 29. Concurrency Doseq Do over a sequence Dosync Do all or nothing Future Generate a thread Delay Bind function but don’t evaluate Promise Create a binding with no value
  • 30. Uses
  • 31. Clojure Shortcomings: ● Dynamic type checking ● Doesn’t scale well: code size, team size, time elapsed ● Startup time ● If JVM is not a good solution, then Clojure isn’t either ○ Systems programming limitations ○ Real-Time http://martintrojer.github.io/beyond-clojure/2016/04/19/beyond-clojure-prelude https://www.quora.com/What-is-clojure-bad-at
  • 33. Clojure in Industry The Boeing 737 MAX Onboard Maintenance Function is 32,000 lines of Clojure. First time Clojure used in aircraft software. One of the largest code bases to date.
  • 34. When to choose Clojure? Handle large amounts of data with significant hardware limitations. When you want more concise code, easier to test and debug. Easier to get over 90% coverage with unit testing. When JVM or CLR can be used.
  • 35. Clojure developers are the happiest developers From an analysis of Reddit comments, http://www.itworld.com/article/2693998/big-data/clojure- developers-are-the-happiest-developers.html
  • 37. Further Info The Joy of Clojure Book by Chris Houser and Michael Fogus Clojure Programming Book by By Chas Emerick, Brian Carper, Christophe Grand Simple Made Easy Video by Rich Hickey