SlideShare a Scribd company logo
1 of 75
GGeettttiinngg ssttaarrtteedd wwiitthh 
((CClloojjuurree)) 
- or how I learned to stop worrying 
and love the (function)
Its a strange kind of love... 
๎€Š Clojure is very different 
๎€Š Part of your brain may rebel !! 
๎€Š Homo-Iconic 
๎€Š List based 
๎€Š Immutable state 
๎€Š Dynamically typed 
๎€Š Tiny syntax 
๎€Š Infinitely extensible 
with Macros
What is Clojure 
๎€Š Functional programming on the JVM 
๎€Š A better Lisp ?
Why get functional ? 
๎€Š Clock speeds stopped getting faster around 
2005 
๎€Š Cant get around the speed of silicon switches 
๎€Š Moores law still in effect 
๎€Š More cores added every 18 months 
๎€Š Laptops with 128 cores by 2020 ?? 
๎€Š Concurrency at the hardware level 
๎€Š Not just multi-threading
You may end up working 
here...
Why a better Lisp ? 
๎€Š Clojure is easier to understand 
๎€Š Nicer libraries 
๎€Š Great interoperability with Java 
platform 
๎€Š Closer to pure functional 
language 
๎€Š Explicitly define mutable state 
๎€Š STM โ€“ transactional memory
Classic or Re-Imagined 
๎€Š Lisp ๎€Š Clojure
Why create Clojure 
๎€Š Concurrency in Java / OO is challenging 
๎€Š Mutable state-full paradigm 
๎€Š Fast enough persistent data structures made it 
viable 
๎€Š Functions as first class 
๎€Š Functions part of data structure 
๎€Š Functions do not have โ€œside effectsโ€ 
๎€Š Focus on computation (maths) rather than 
procedural algorithms
Why use Clojure 
๎€Š Its a pure functional programming language 
๎€Š You can use existing Java code and platform 
๎€Š Simple syntax 
๎€Š It gets you thinking differently !!! 
๎€Š An excuse to learn Emacs properly ??
The downside of Clojure 
( x )
The downside of Clojure (2) 
( ( x ) )
The downside of Clojure (3) 
( ( ( x ) ) )
The downside of Clojure (4) 
( ( ( ( x ) ) ) )
The downside of Clojure (...) 
( ( ( ( ( x ) ) ) ) )
Tool support 
๎€Š Emacs 
๎€Š clojure-mode, clojure-test, 
paredit-mode 
๎€Š Netbeans 
๎€Š enclojure 
๎€Š IntelliJ 
๎€Š La Clojure 
๎€Š Eclipse 
๎€Š Counterclockwise 
plugin 
๎€Š Build tools 
๎€Š Leiningen 
๎€Š Emacs + Slime 
๎€Š Cake 
๎€Š Maven
Lets look at Clojure code
We're not in Kansas any 
more... 
๎€Š Java 
package โ€ฆ ; 
class โ€ฆ; 
member variables; 
access retType methodName (param, param) {โ€ฆ} 
๎€Š Clojure 
(ns name-space-name) 
(defstruct my-data-struture :label-name) 
(functionName param (fn param)) 
; param's can be functions too !!
Its just a tree...
โ€ฆ a tree structure 
๎€Š Functions are data 
๎€Š Data structures are functions !!
Download 
๎€Š clojure.org 
๎€Š Or via buld tool 
๎€Š Maven 
๎€Š Leiningen 
๎€Š Cake 
๎€Š Java 
๎€Š At least version 5 
๎€Š Version 6 better 
performance and 
reporting
All hail the REPL 
๎€Š An interactive shell for clojure 
๎€Š Using Leiningen (Line โ€“ ing โ€“ en) 
https://github.com/technomancy/leiningen/ 
lein 
lein repl
Leiningen Clojure project 
lein new 
lein deps 
lein repl 
lein swank 
๎€Š Create a new clojure project 
๎€Š Download clojure 
๎€Š Start the interactive shell 
๎€Š Start repl server for emacs
Leiningen project file 
(defproject my-jax-london-project "1.0.0-SNAPSHOT" 
:description "A meaningful description" 
:dependencies [[org.clojure/clojure "1.2.1"] 
[org.clojure/clojure-contrib "1.2.0"]] 
:dev-dependencies [[swank-clojure "1.2.1"] 
[org.clojars.rayne/autodoc "0.8.0- 
SNAPSHOT"]] 
:autodoc { :name "London Clojure dojo", :page-title "Dojo API"} 
;; Only re-fetch deps when they change in project.clj or when :library-path directory is empty. 
:checksum-deps true 
:license {:name "Eclipse Public License - v 1.0"
Loading code into the REPL 
(load-file "temp.clj") 
๎€Š Stuff too big to type 
๎€Š use an absolute path or a path relative to 
where you launched the REPL 
๎€Š Use Emacs or other IDE when you're ready
Simplest possible examples 
(* 2 2) 
(+ 1 2 3) 
( 24 4 3 2) 
( 2 4) 
( 2.0 4) 
(+ (* 4 5) 22) 
(+ 4 (* 3 2) 7) 
(+ 3 (* 2 (- 7 2) 4) (/ 16 4))
Calling Java... ooooo!! 
(javax.swing.JOptionPane/ 
showMessageDialog nil "Hello World" )
Ratio 
๎€Š Basic data type 
๎€Š Allow delaying computation 
๎€Š Avoid loss of precision 
(/ 2 4) 
(/ 2.0 4) 
(/ 1 3) 
(/ 1.0 3) 
(class (/ 1 3)
Simple function example 
(defn hello-world [name] (println(str "Hello " 
name))) 
(hello-world "jr0cket")
What class is that... 
(class (str "Jr0cket")) 
java.lang.String 
(class (defn hello-world [name] (str "Hello cruel 
world"))) 
clojure.lang.Var
str 
(str h e l l o) ๎€Š Concatenate strings 
together 
๎€Š Can represent a 
character using
Booleans / Expressions 
(= 1 1.0) 
(= 1 2) 
(< 1 2) 
๎€Š True is a symbol, but 
also 
user=> (class true) 
java.lang.Boolean 
(if 0 (println โ€œTrueโ€)) 
(if nil (println โ€œTrueโ€)) 
(if โ€œโ€ (println โ€œTrueโ€))
More examples 
(last [1 1 2 3 5 8]) 
(defn penultimate [x] 
(last (butlast x)) ) 
(penultimate [1 2 3 4 5]) 
๎€Š (doc last) 
๎€Š (doc butlast)
And more... 
(nth [1 1 2 3 5 8] 2) 
(count [1 1 2 3 5 8]) 
(reverse [1 1 2 3 5 8]) 
(defn palindrome? [x] 
(= x (reverse x)) ) 
๎€Š Proposition โ€“ naming 
convention
Even more 
(flatten [[1 1] 2 [3 [5 8]]]) 
(compress "aaaabccaadeeee") 
(encode "aaaabccaadeeee") 
(replicate 10 "a")
Where to find out more... 
http://clojure.org/cheatsheet 
http://clojure.github.com/cloj 
ure/clojure.core-api.html
Your own functions 
๎€Š Define your own algorithms 
(defn square [x] (* x x))
Anonymous functions 
๎€Š (fn ) (# ) 
(def sqr #(* % %))
Overloading functions 
(defn make 
([ ] ; the make function that takes no arguments 
(struct vector 0 0)) 
([x y] ; ... takes x and y keywords as arguments 
(struct vector x y)) 
)
Pure functions โ€“ no side effects 
๎€Š Clojure functions are pure 
๎€Š they have no side effects 
๎€Š Unless you define them as such 
๎€Š Pure functions are easy to develop, test, and 
understand 
๎€Š Aim for pure functions where possible
Clojure data structures 
๎€Š ( Lists ) - Ordered collection of elements 
๎€Š (list 1 3 5) '(8 13 21) 
๎€Š { map } 
๎€Š 
๎€Š [ Vectors ] - Optimised for random access 
๎€Š [:tom :dick :harry] 
๎€Š Lists are for code, Vectors for data 
๎€Š (nth [:tom :dick :jane :harry ] 2)
List operations 
(first 1 2 3) 
๎€Š The head of the list 
(last 7 8 9) 
๎€Š The last element of the list 
(rest 1 2 3 4 5) 
๎€Š Everything but the head 
(cons :new-list '(1 2 3 4 5)) 
๎€Š New list, given head and tail
More data structures... 
(defstruct date :day :month :year) 
(struct date) 
๎€Š as we did not specify any parameters, we just 
get nil values 
๎€Š things in curly brackets are hash maps - the 
usual Java hashmaps
maps 
๎€Š { :a 1 :b 2} 
๎€Š user=> { :a 1 :b 2} 
๎€Š {:a 1, :b 2} 
๎€Š user=> { :a 1 :b } 
๎€Š java.lang.ArrayIndexOutOfB 
oundsException: 3 
๎€Š user=> { :a 1 :b 2} 
๎€Š {:a 1, :b 2} 
๎€Š user=> { :a 1 :b 3} ; this 
should make the repl 
complain in clojure 1.2, 
fine in 1.1 
๎€Š {:a 1, :b 3} 
๎€Š user=> {:a {:a 1}} 
๎€Š {:a {:a 1}} 
๎€Š user=> {{:a 1} :a} 
๎€Š {{:a 1} :a} 
๎€Š ; idiom - put :a on the left
Vectors 
๎€Š [:neo :morpheus :trinity :smith] 
๎€Š [:matrix-characters [:neo :morpheus :trinity 
:smith]] 
๎€Š (first [:neo :morpheus :trinity :smith]) 
๎€Š (nth [:matrix :babylon5 :firefly :stargate] 2) 
๎€Š (concat [:neo] [:trinity]) 
๎€Š (def my-vector 
๎€Š (vector? x)
Your own data structures 
๎€Š Special forms 
(def johnny {:first-name "John", :last-name 
"Stevenson"}) 
(defstruct person :first-name :last-name) 
(defrecord person [String :first-name String 
:last-name] :allow-nulls false)
Memory use 
๎€Š Once all references to an immutable structure 
disappears it can be garbage collected. 
๎€Š Loops that create intermittent structures are 
garbage collected every turn of the loop. 
;;Memory : 0 
(let [a (range 50000)]) ;; Memory: "big" while 
the let is "executing" 
;;Memory : 0 -- no reference to a anymore !
macros 
๎€Š Define extensions to the language 
๎€Š Clojure only has 7 primitive functions 
๎€Š Everything else in the language is created with 
macros 
๎€Š Allows the language to be extended easily 
without changes to the compiler
Special forms 
๎€Š Recognized by the Clojure compiler and not 
implemented in Clojure source code. 
๎€Š A relatively small number of special forms 
๎€Š New ones cannot be implemented 
๎€Š catch, def, do, dot ('.'), finally, fn, if, let, loop, 
monitor-enter, monitor-exit, new, quote, 
recur, set!, throw, try and var
if 
user=> (doc if) 
------------------------- 
if 
Special Form 
Please see http://clojure.org/special_forms#if 
nil
Sequences 
๎€Š Sequences are logical views of collections 
๎€Š Logical lists 
๎€Š Java collections, Clojure-specific collections, 
strings, streams, directory structures and XML 
trees. 
๎€Š New Clojure collections created efficiently 
๎€Š Creates a sort of branch (delta) in the data 
structure tree
Working with Sequences 
๎€Š first 
๎€Š rest 
๎€Š cons
Software Transactional 
Memory 
๎€Š Works like transactional databases 
๎€Š Provides safe, concurrent access to memory 
๎€Š Agents allow encapsulated access to mutable 
resources
Sharing mutable data 
๎€Š Use mutable references to immutable data 
๎€Š Reference Types 
๎€Š synchronous access to multiple pieces of 
shared data ("coordinated") by using STM 
๎€Š Atoms 
๎€Š synchronous access to a single piece of shared 
data. 
๎€Š Agents 
๎€Š asynchronous access to a single piece of 
shared data
Name-spaces 
๎€Š Define a namespace 
(ns name-space-name) 
๎€Š Include namespace code 
(use 'names-space-name) 
๎€Š Like a package statement in Java
Clojure Libraries 
(use 'clojure.contrib.str-utils) 
' 
๎€Š Dont treat the next thing as a function 
๎€Š Open source libraries - http://clojars.org/
Recursive functions 
๎€Š Functions that call 
themselves 
๎€Š Fractal coding 
๎€Š Tail recursion 
๎€Š Avoids blowing the 
heap 
๎€Š A trick as the JVM 
does not support 
tail recursion 
directly :-(
Tail recursion 
(defn factorial [x] 
(if (= x 0) 
1 
(* x (factorial (- x 1)) 
))) 
๎€Š Dont blow your stack 
!!
TDD with Clojure is nice 
๎€Š Clojure test 
(deftest test-name 
(is (= value (function params))) )
Simple test 
(ns simple-test 
(:use clojure.test) 
(:use simple)) 
(deftest simple-test 
(is (= (hello) "Hello world!")) 
(is (= (hello "test") "Hello test!")))
Working with Java 
๎€Š Java Classes 
๎€Š fullstop after class name 
๎€Š (JFrame. ) 
๎€Š (Math/cos 3) ; static method call 
๎€Š Java methods 
๎€Š fullstop before method name 
๎€Š (.getContentPane frame) ;;method name first 
๎€Š (. frame getContentPane) ;;object first
Importing 
(ns drawing-demo 
(:import [javax.swing JPanel JFrame] 
[java.awt Dimension]))
Working with Java (2) 
๎€Š Clojure gives you clean, simple, direct access 
to Java 
๎€Š call any Java API directly 
๎€Š (System/getProperties) 
๎€Š -> {java.runtime.name=Java(TM) SE Runtime 
Environment
Calling Clojure from Java 
๎€Š Export the clojure to a .jar 
๎€Š Add the jar to the classpath 
๎€Š Import the library in your code 
๎€Š Call it like any other method
Errors are inevitable 
๎€Š In the REPL 
(printStackTrace *e) 
๎€Š *e holds the last exception raised 
๎€Š Clojure exceptions are Java exceptions
Managing State in Immutable 
world 
๎€Š Mutable data structures to share between 
threads (Software Transactional Memory) 
๎€Š refs, vars, atoms, agents 
๎€Š No locks required for thread safe code, no 
deadlocks or race conditions 
๎€Š Atomically apply changes
Mutable functions 
๎€Š Swap! 
๎€Š 
๎€Š Name functions that have side effects with an 
exclamation mark 
๎€Š Naming convention
Deployment 
๎€Š lein jar 
๎€Š lein uberjar
Documentation 
(doc function-name) 
(javadoc class-name) 
(defn function-name 
โ€œA meaningful 
description of the 
functionโ€ 
params ) 
๎€Š Show fn description 
๎€Š Show javadoc in 
browser 
๎€Š Write documentation 
for your own 
functions
Example documentation 
(doc str) 
Use doc to print the documentation for str: 
user=> (doc str) 
------------------------- 
clojure.core/str 
([] [x] [x & ys]) 
With no args, returns the empty string. With one 
arg x, returns x.toString(). (str nil) returns 
the empty string. With more than one arg, 
returns the concatenation of the str values 
of the args. 
๎€Š Fully qualified 
namespace 
๎€Š Arguments 
๎€Š Details
find-doc 
(find-doc โ€œreduceโ€) 
user=> (find-doc "reduce" ) 
------------------------- 
clojure/areduce 
([a idx ret init expr]) 
Macro 
... details ... 
------------------------- 
clojure/reduce 
([f coll] [f val coll]) 
... details ... 
๎€Š Search for functions 
you dont know 
๎€Š Keyword parameter
Autodoc 
๎€Š Generate a website for your API's 
๎€Š http://tomfaulhaber.github.com/auto 
doc/ 
๎€Š Add dependency to your build file 
๎€Š http://clojars.org/org.clojars.rayne/autodoc 
๎€Š lein deps 
๎€Š lein autodoc
Where next 
๎€Š Coding dojo โ€“ London / start your own 
๎€Š www.londonjavacommunity.co.uk 
๎€Š Books โ€“ Programming Clojure (Pragmatic) 
๎€Š Website โ€“ clojure.org dev.clojure.org 
๎€Š Full Disclojure 
vimeo.com/channels/fulldisclojure 
๎€Š clojure.jr0cket.co.uk 
๎€Š 99 problems in clojure
Credits 
No parentheses 
were harmed in the 
making of this 
presentation....
TThhaannkk yyoouu 
๎€Š HHaavvee ffuunn 
lleeaarrnniinngg !!!! 
JJoohhnn@@jjrr00cckkeett..ccoomm 
@@jjrr00cckkeett 
jjoohhnn..jjrr00cckkeett..ccoo..uukk 
cclloojjuurree..jjrr00cckkeett..ccoo..uukk

More Related Content

What's hot

TclOO: Past Present Future
TclOO: Past Present FutureTclOO: Past Present Future
TclOO: Past Present Future
Donal Fellows
ย 
Excuse me, sir, do you have a moment to talk about tests in Kotlin
Excuse me, sir, do you have a moment to talk about tests in KotlinExcuse me, sir, do you have a moment to talk about tests in Kotlin
Excuse me, sir, do you have a moment to talk about tests in Kotlin
leonsabr
ย 
Scala at HUJI PL Seminar 2008
Scala at HUJI PL Seminar 2008Scala at HUJI PL Seminar 2008
Scala at HUJI PL Seminar 2008
Yardena Meymann
ย 
Java 7 New Features
Java 7 New FeaturesJava 7 New Features
Java 7 New Features
Jussi Pohjolainen
ย 

What's hot (20)

Oscon Java Testing on the Fast Lane
Oscon Java Testing on the Fast LaneOscon Java Testing on the Fast Lane
Oscon Java Testing on the Fast Lane
ย 
Java7 New Features and Code Examples
Java7 New Features and Code ExamplesJava7 New Features and Code Examples
Java7 New Features and Code Examples
ย 
From Java to Parellel Clojure - Clojure South 2019
From Java to Parellel Clojure - Clojure South 2019From Java to Parellel Clojure - Clojure South 2019
From Java to Parellel Clojure - Clojure South 2019
ย 
JavaOne 2013 - Clojure for Java Developers
JavaOne 2013 - Clojure for Java DevelopersJavaOne 2013 - Clojure for Java Developers
JavaOne 2013 - Clojure for Java Developers
ย 
Exploring Clojurescript
Exploring ClojurescriptExploring Clojurescript
Exploring Clojurescript
ย 
Advance Java Programs skeleton
Advance Java Programs skeletonAdvance Java Programs skeleton
Advance Java Programs skeleton
ย 
06 Java Language And OOP Part VI
06 Java Language And OOP Part VI06 Java Language And OOP Part VI
06 Java Language And OOP Part VI
ย 
TclOO: Past Present Future
TclOO: Past Present FutureTclOO: Past Present Future
TclOO: Past Present Future
ย 
Scala coated JVM
Scala coated JVMScala coated JVM
Scala coated JVM
ย 
Adventures in TclOO
Adventures in TclOOAdventures in TclOO
Adventures in TclOO
ย 
Excuse me, sir, do you have a moment to talk about tests in Kotlin
Excuse me, sir, do you have a moment to talk about tests in KotlinExcuse me, sir, do you have a moment to talk about tests in Kotlin
Excuse me, sir, do you have a moment to talk about tests in Kotlin
ย 
Spock: A Highly Logical Way To Test
Spock: A Highly Logical Way To TestSpock: A Highly Logical Way To Test
Spock: A Highly Logical Way To Test
ย 
Kotlin is charming; The reasons Java engineers should start Kotlin.
Kotlin is charming; The reasons Java engineers should start Kotlin.Kotlin is charming; The reasons Java engineers should start Kotlin.
Kotlin is charming; The reasons Java engineers should start Kotlin.
ย 
Ad java prac sol set
Ad java prac sol setAd java prac sol set
Ad java prac sol set
ย 
Scala at HUJI PL Seminar 2008
Scala at HUJI PL Seminar 2008Scala at HUJI PL Seminar 2008
Scala at HUJI PL Seminar 2008
ย 
Introduction to clojure
Introduction to clojureIntroduction to clojure
Introduction to clojure
ย 
Clojure: a LISP for the JVM
Clojure: a LISP for the JVMClojure: a LISP for the JVM
Clojure: a LISP for the JVM
ย 
Java 7 New Features
Java 7 New FeaturesJava 7 New Features
Java 7 New Features
ย 
Blocks & GCD
Blocks & GCDBlocks & GCD
Blocks & GCD
ย 
Spock: Test Well and Prosper
Spock: Test Well and ProsperSpock: Test Well and Prosper
Spock: Test Well and Prosper
ย 

Viewers also liked

Clojure, Web and Luminus
Clojure, Web and LuminusClojure, Web and Luminus
Clojure, Web and Luminus
Edward Tsech
ย 
Intro to Java 8 Closures (Dainius Mezanskas)
Intro to Java 8 Closures (Dainius Mezanskas)Intro to Java 8 Closures (Dainius Mezanskas)
Intro to Java 8 Closures (Dainius Mezanskas)
Kaunas Java User Group
ย 
JS Lab`16. ะ ะพะผะฐะฝ ะ›ัŽั‚ะธะบะพะฒ: "ClojureScript, ั‡ั‚ะพ ั‚ั‹ ั‚ะฐะบะพะต?"
JS Lab`16. ะ ะพะผะฐะฝ ะ›ัŽั‚ะธะบะพะฒ: "ClojureScript, ั‡ั‚ะพ ั‚ั‹ ั‚ะฐะบะพะต?"JS Lab`16. ะ ะพะผะฐะฝ ะ›ัŽั‚ะธะบะพะฒ: "ClojureScript, ั‡ั‚ะพ ั‚ั‹ ั‚ะฐะบะพะต?"
JS Lab`16. ะ ะพะผะฐะฝ ะ›ัŽั‚ะธะบะพะฒ: "ClojureScript, ั‡ั‚ะพ ั‚ั‹ ั‚ะฐะบะพะต?"
GeeksLab Odessa
ย 
Messaging With Erlang And Jabber
Messaging With  Erlang And  JabberMessaging With  Erlang And  Jabber
Messaging With Erlang And Jabber
l xf
ย 

Viewers also liked (20)

Clojure: an overview
Clojure: an overviewClojure: an overview
Clojure: an overview
ย 
Clojure: The Art of Abstraction
Clojure: The Art of AbstractionClojure: The Art of Abstraction
Clojure: The Art of Abstraction
ย 
DSL in Clojure
DSL in ClojureDSL in Clojure
DSL in Clojure
ย 
Functional programming in clojure
Functional programming in clojureFunctional programming in clojure
Functional programming in clojure
ย 
Clojure, Web and Luminus
Clojure, Web and LuminusClojure, Web and Luminus
Clojure, Web and Luminus
ย 
Yet another startup built on Clojure(Script)
Yet another startup built on Clojure(Script)Yet another startup built on Clojure(Script)
Yet another startup built on Clojure(Script)
ย 
Intro to Java 8 Closures (Dainius Mezanskas)
Intro to Java 8 Closures (Dainius Mezanskas)Intro to Java 8 Closures (Dainius Mezanskas)
Intro to Java 8 Closures (Dainius Mezanskas)
ย 
Clojure at BackType
Clojure at BackTypeClojure at BackType
Clojure at BackType
ย 
Writing DSL in Clojure
Writing DSL in ClojureWriting DSL in Clojure
Writing DSL in Clojure
ย 
ETL in Clojure
ETL in ClojureETL in Clojure
ETL in Clojure
ย 
Functional Reactive Programming in Clojurescript
Functional Reactive Programming in ClojurescriptFunctional Reactive Programming in Clojurescript
Functional Reactive Programming in Clojurescript
ย 
EPUB3ใงๅค‰ใ‚ใ‚‹้›ปๅญๆ›ธ็ฑใฎ่กจ็พๅŠ›
EPUB3ใงๅค‰ใ‚ใ‚‹้›ปๅญๆ›ธ็ฑใฎ่กจ็พๅŠ› EPUB3ใงๅค‰ใ‚ใ‚‹้›ปๅญๆ›ธ็ฑใฎ่กจ็พๅŠ›
EPUB3ใงๅค‰ใ‚ใ‚‹้›ปๅญๆ›ธ็ฑใฎ่กจ็พๅŠ›
ย 
JS Lab`16. ะ ะพะผะฐะฝ ะ›ัŽั‚ะธะบะพะฒ: "ClojureScript, ั‡ั‚ะพ ั‚ั‹ ั‚ะฐะบะพะต?"
JS Lab`16. ะ ะพะผะฐะฝ ะ›ัŽั‚ะธะบะพะฒ: "ClojureScript, ั‡ั‚ะพ ั‚ั‹ ั‚ะฐะบะพะต?"JS Lab`16. ะ ะพะผะฐะฝ ะ›ัŽั‚ะธะบะพะฒ: "ClojureScript, ั‡ั‚ะพ ั‚ั‹ ั‚ะฐะบะพะต?"
JS Lab`16. ะ ะพะผะฐะฝ ะ›ัŽั‚ะธะบะพะฒ: "ClojureScript, ั‡ั‚ะพ ั‚ั‹ ั‚ะฐะบะพะต?"
ย 
HTML5์™€ ์ „์ž์ฑ…, ์œตํ•ฉ ์„œ๋น„์Šค๋กœ ๋ฐœ์ „ ํ˜„ํ™ฉ
HTML5์™€ ์ „์ž์ฑ…, ์œตํ•ฉ ์„œ๋น„์Šค๋กœ ๋ฐœ์ „ ํ˜„ํ™ฉHTML5์™€ ์ „์ž์ฑ…, ์œตํ•ฉ ์„œ๋น„์Šค๋กœ ๋ฐœ์ „ ํ˜„ํ™ฉ
HTML5์™€ ์ „์ž์ฑ…, ์œตํ•ฉ ์„œ๋น„์Šค๋กœ ๋ฐœ์ „ ํ˜„ํ™ฉ
ย 
DITA, HTML5, and EPUB3 (Content Agility, June 2013)
DITA, HTML5, and EPUB3 (Content Agility, June 2013)DITA, HTML5, and EPUB3 (Content Agility, June 2013)
DITA, HTML5, and EPUB3 (Content Agility, June 2013)
ย 
EPUB3 Now! at IDPF 2013 Digital Book
EPUB3 Now! at IDPF 2013 Digital BookEPUB3 Now! at IDPF 2013 Digital Book
EPUB3 Now! at IDPF 2013 Digital Book
ย 
Winning the Erlang Editโ€ขBuildโ€ขTest Cycle
Winning the Erlang Editโ€ขBuildโ€ขTest CycleWinning the Erlang Editโ€ขBuildโ€ขTest Cycle
Winning the Erlang Editโ€ขBuildโ€ขTest Cycle
ย 
Messaging With Erlang And Jabber
Messaging With  Erlang And  JabberMessaging With  Erlang And  Jabber
Messaging With Erlang And Jabber
ย 
Clojure class
Clojure classClojure class
Clojure class
ย 
20 reasons why we don't need architects (@pavlobaron)
20 reasons why we don't need architects (@pavlobaron)20 reasons why we don't need architects (@pavlobaron)
20 reasons why we don't need architects (@pavlobaron)
ย 

Similar to Getting started with Clojure

Clojure - A new Lisp
Clojure - A new LispClojure - A new Lisp
Clojure - A new Lisp
elliando dias
ย 
55j7
55j755j7
55j7
swein2
ย 
Clojure intro
Clojure introClojure intro
Clojure intro
Basav Nagur
ย 
Hadoop + Clojure
Hadoop + ClojureHadoop + Clojure
Hadoop + Clojure
elliando dias
ย 

Similar to Getting started with Clojure (20)

Clojure 1.1 And Beyond
Clojure 1.1 And BeyondClojure 1.1 And Beyond
Clojure 1.1 And Beyond
ย 
Pune Clojure Course Outline
Pune Clojure Course OutlinePune Clojure Course Outline
Pune Clojure Course Outline
ย 
A Survey of Concurrency Constructs
A Survey of Concurrency ConstructsA Survey of Concurrency Constructs
A Survey of Concurrency Constructs
ย 
Clojure - A new Lisp
Clojure - A new LispClojure - A new Lisp
Clojure - A new Lisp
ย 
ClojureScript for the web
ClojureScript for the webClojureScript for the web
ClojureScript for the web
ย 
55j7
55j755j7
55j7
ย 
Introductory Clojure Presentation
Introductory Clojure PresentationIntroductory Clojure Presentation
Introductory Clojure Presentation
ย 
Clojure And Swing
Clojure And SwingClojure And Swing
Clojure And Swing
ย 
Lobos Introduction
Lobos IntroductionLobos Introduction
Lobos Introduction
ย 
Presentation of Python, Django, DockerStack
Presentation of Python, Django, DockerStackPresentation of Python, Django, DockerStack
Presentation of Python, Django, DockerStack
ย 
Clojure intro
Clojure introClojure intro
Clojure intro
ย 
Enter The Matrix
Enter The MatrixEnter The Matrix
Enter The Matrix
ย 
A Taste of Clojure
A Taste of ClojureA Taste of Clojure
A Taste of Clojure
ย 
Clojure made simple - Lightning talk
Clojure made simple - Lightning talkClojure made simple - Lightning talk
Clojure made simple - Lightning talk
ย 
Java 7 Whats New(), Whats Next() from Oredev
Java 7 Whats New(), Whats Next() from OredevJava 7 Whats New(), Whats Next() from Oredev
Java 7 Whats New(), Whats Next() from Oredev
ย 
Clojure made really really simple
Clojure made really really simpleClojure made really really simple
Clojure made really really simple
ย 
ะ›ะตะพะฝะธะด ะจะตะฒั†ะพะฒ ยซClojure ะฒ ะดะตะปะตยป
ะ›ะตะพะฝะธะด ะจะตะฒั†ะพะฒ ยซClojure ะฒ ะดะตะปะตยปะ›ะตะพะฝะธะด ะจะตะฒั†ะพะฒ ยซClojure ะฒ ะดะตะปะตยป
ะ›ะตะพะฝะธะด ะจะตะฒั†ะพะฒ ยซClojure ะฒ ะดะตะปะตยป
ย 
Concurrency Constructs Overview
Concurrency Constructs OverviewConcurrency Constructs Overview
Concurrency Constructs Overview
ย 
Scala Talk at FOSDEM 2009
Scala Talk at FOSDEM 2009Scala Talk at FOSDEM 2009
Scala Talk at FOSDEM 2009
ย 
Hadoop + Clojure
Hadoop + ClojureHadoop + Clojure
Hadoop + Clojure
ย 

More from John Stevenson

More from John Stevenson (20)

ClojureX Conference 2017 - 10 amazing years of Clojure
ClojureX Conference 2017 - 10 amazing years of ClojureClojureX Conference 2017 - 10 amazing years of Clojure
ClojureX Conference 2017 - 10 amazing years of Clojure
ย 
Confessions of a developer community builder
Confessions of a developer community builderConfessions of a developer community builder
Confessions of a developer community builder
ย 
Progscon 2017: Taming the wild fronteer - Adventures in Clojurescript
Progscon 2017: Taming the wild fronteer - Adventures in ClojurescriptProgscon 2017: Taming the wild fronteer - Adventures in Clojurescript
Progscon 2017: Taming the wild fronteer - Adventures in Clojurescript
ย 
Introduction to Functional Reactive Web with Clojurescript
Introduction to Functional Reactive Web with ClojurescriptIntroduction to Functional Reactive Web with Clojurescript
Introduction to Functional Reactive Web with Clojurescript
ย 
Thinking Functionally with Clojure
Thinking Functionally with ClojureThinking Functionally with Clojure
Thinking Functionally with Clojure
ย 
Communication improbable
Communication improbableCommunication improbable
Communication improbable
ย 
Getting into public speaking at conferences
Getting into public speaking at conferencesGetting into public speaking at conferences
Getting into public speaking at conferences
ย 
Functional web with clojure
Functional web with clojureFunctional web with clojure
Functional web with clojure
ย 
Get into Functional Programming with Clojure
Get into Functional Programming with ClojureGet into Functional Programming with Clojure
Get into Functional Programming with Clojure
ย 
Guiding people into Clojure
Guiding people into ClojureGuiding people into Clojure
Guiding people into Clojure
ย 
Git and github - Verson Control for the Modern Developer
Git and github - Verson Control for the Modern DeveloperGit and github - Verson Control for the Modern Developer
Git and github - Verson Control for the Modern Developer
ย 
Get Functional Programming with Clojure
Get Functional Programming with ClojureGet Functional Programming with Clojure
Get Functional Programming with Clojure
ย 
So you want to run a developer event, are you crazy?
So you want to run a developer event, are you crazy?So you want to run a developer event, are you crazy?
So you want to run a developer event, are you crazy?
ย 
Trailhead live - Overview of Salesforce App Cloud
Trailhead live - Overview of Salesforce App CloudTrailhead live - Overview of Salesforce App Cloud
Trailhead live - Overview of Salesforce App Cloud
ย 
Introducing the Salesforce platform
Introducing the Salesforce platformIntroducing the Salesforce platform
Introducing the Salesforce platform
ย 
Dreamforce14 Metadata Management with Git Version Control
Dreamforce14 Metadata Management with Git Version ControlDreamforce14 Metadata Management with Git Version Control
Dreamforce14 Metadata Management with Git Version Control
ย 
Salesforce Summer of Hacks London - Introduction
Salesforce Summer of Hacks London - IntroductionSalesforce Summer of Hacks London - Introduction
Salesforce Summer of Hacks London - Introduction
ย 
Heroku Introduction: Scaling customer facing apps & services
Heroku Introduction: Scaling customer facing apps & servicesHeroku Introduction: Scaling customer facing apps & services
Heroku Introduction: Scaling customer facing apps & services
ย 
Developers guide to the Salesforce1 Platform
Developers guide to the Salesforce1 PlatformDevelopers guide to the Salesforce1 Platform
Developers guide to the Salesforce1 Platform
ย 
Developer week EMEA - Salesforce1 Mobile App overview
Developer week EMEA - Salesforce1 Mobile App overviewDeveloper week EMEA - Salesforce1 Mobile App overview
Developer week EMEA - Salesforce1 Mobile App overview
ย 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(โ˜Ž๏ธ+971_581248768%)**%*]'#abortion pills for sale in dubai@
ย 

Recently uploaded (20)

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
ย 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
ย 
๐Ÿฌ The future of MySQL is Postgres ๐Ÿ˜
๐Ÿฌ  The future of MySQL is Postgres   ๐Ÿ˜๐Ÿฌ  The future of MySQL is Postgres   ๐Ÿ˜
๐Ÿฌ The future of MySQL is Postgres ๐Ÿ˜
ย 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
ย 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
ย 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
ย 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
ย 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ย 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
ย 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
ย 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
ย 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
ย 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
ย 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
ย 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
ย 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
ย 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
ย 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
ย 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
ย 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
ย 

Getting started with Clojure

  • 1. GGeettttiinngg ssttaarrtteedd wwiitthh ((CClloojjuurree)) - or how I learned to stop worrying and love the (function)
  • 2. Its a strange kind of love... ๎€Š Clojure is very different ๎€Š Part of your brain may rebel !! ๎€Š Homo-Iconic ๎€Š List based ๎€Š Immutable state ๎€Š Dynamically typed ๎€Š Tiny syntax ๎€Š Infinitely extensible with Macros
  • 3. What is Clojure ๎€Š Functional programming on the JVM ๎€Š A better Lisp ?
  • 4. Why get functional ? ๎€Š Clock speeds stopped getting faster around 2005 ๎€Š Cant get around the speed of silicon switches ๎€Š Moores law still in effect ๎€Š More cores added every 18 months ๎€Š Laptops with 128 cores by 2020 ?? ๎€Š Concurrency at the hardware level ๎€Š Not just multi-threading
  • 5. You may end up working here...
  • 6. Why a better Lisp ? ๎€Š Clojure is easier to understand ๎€Š Nicer libraries ๎€Š Great interoperability with Java platform ๎€Š Closer to pure functional language ๎€Š Explicitly define mutable state ๎€Š STM โ€“ transactional memory
  • 7. Classic or Re-Imagined ๎€Š Lisp ๎€Š Clojure
  • 8. Why create Clojure ๎€Š Concurrency in Java / OO is challenging ๎€Š Mutable state-full paradigm ๎€Š Fast enough persistent data structures made it viable ๎€Š Functions as first class ๎€Š Functions part of data structure ๎€Š Functions do not have โ€œside effectsโ€ ๎€Š Focus on computation (maths) rather than procedural algorithms
  • 9. Why use Clojure ๎€Š Its a pure functional programming language ๎€Š You can use existing Java code and platform ๎€Š Simple syntax ๎€Š It gets you thinking differently !!! ๎€Š An excuse to learn Emacs properly ??
  • 10. The downside of Clojure ( x )
  • 11. The downside of Clojure (2) ( ( x ) )
  • 12. The downside of Clojure (3) ( ( ( x ) ) )
  • 13. The downside of Clojure (4) ( ( ( ( x ) ) ) )
  • 14. The downside of Clojure (...) ( ( ( ( ( x ) ) ) ) )
  • 15. Tool support ๎€Š Emacs ๎€Š clojure-mode, clojure-test, paredit-mode ๎€Š Netbeans ๎€Š enclojure ๎€Š IntelliJ ๎€Š La Clojure ๎€Š Eclipse ๎€Š Counterclockwise plugin ๎€Š Build tools ๎€Š Leiningen ๎€Š Emacs + Slime ๎€Š Cake ๎€Š Maven
  • 16. Lets look at Clojure code
  • 17.
  • 18. We're not in Kansas any more... ๎€Š Java package โ€ฆ ; class โ€ฆ; member variables; access retType methodName (param, param) {โ€ฆ} ๎€Š Clojure (ns name-space-name) (defstruct my-data-struture :label-name) (functionName param (fn param)) ; param's can be functions too !!
  • 19. Its just a tree...
  • 20. โ€ฆ a tree structure ๎€Š Functions are data ๎€Š Data structures are functions !!
  • 21. Download ๎€Š clojure.org ๎€Š Or via buld tool ๎€Š Maven ๎€Š Leiningen ๎€Š Cake ๎€Š Java ๎€Š At least version 5 ๎€Š Version 6 better performance and reporting
  • 22. All hail the REPL ๎€Š An interactive shell for clojure ๎€Š Using Leiningen (Line โ€“ ing โ€“ en) https://github.com/technomancy/leiningen/ lein lein repl
  • 23. Leiningen Clojure project lein new lein deps lein repl lein swank ๎€Š Create a new clojure project ๎€Š Download clojure ๎€Š Start the interactive shell ๎€Š Start repl server for emacs
  • 24. Leiningen project file (defproject my-jax-london-project "1.0.0-SNAPSHOT" :description "A meaningful description" :dependencies [[org.clojure/clojure "1.2.1"] [org.clojure/clojure-contrib "1.2.0"]] :dev-dependencies [[swank-clojure "1.2.1"] [org.clojars.rayne/autodoc "0.8.0- SNAPSHOT"]] :autodoc { :name "London Clojure dojo", :page-title "Dojo API"} ;; Only re-fetch deps when they change in project.clj or when :library-path directory is empty. :checksum-deps true :license {:name "Eclipse Public License - v 1.0"
  • 25. Loading code into the REPL (load-file "temp.clj") ๎€Š Stuff too big to type ๎€Š use an absolute path or a path relative to where you launched the REPL ๎€Š Use Emacs or other IDE when you're ready
  • 26. Simplest possible examples (* 2 2) (+ 1 2 3) ( 24 4 3 2) ( 2 4) ( 2.0 4) (+ (* 4 5) 22) (+ 4 (* 3 2) 7) (+ 3 (* 2 (- 7 2) 4) (/ 16 4))
  • 27. Calling Java... ooooo!! (javax.swing.JOptionPane/ showMessageDialog nil "Hello World" )
  • 28. Ratio ๎€Š Basic data type ๎€Š Allow delaying computation ๎€Š Avoid loss of precision (/ 2 4) (/ 2.0 4) (/ 1 3) (/ 1.0 3) (class (/ 1 3)
  • 29. Simple function example (defn hello-world [name] (println(str "Hello " name))) (hello-world "jr0cket")
  • 30. What class is that... (class (str "Jr0cket")) java.lang.String (class (defn hello-world [name] (str "Hello cruel world"))) clojure.lang.Var
  • 31. str (str h e l l o) ๎€Š Concatenate strings together ๎€Š Can represent a character using
  • 32. Booleans / Expressions (= 1 1.0) (= 1 2) (< 1 2) ๎€Š True is a symbol, but also user=> (class true) java.lang.Boolean (if 0 (println โ€œTrueโ€)) (if nil (println โ€œTrueโ€)) (if โ€œโ€ (println โ€œTrueโ€))
  • 33. More examples (last [1 1 2 3 5 8]) (defn penultimate [x] (last (butlast x)) ) (penultimate [1 2 3 4 5]) ๎€Š (doc last) ๎€Š (doc butlast)
  • 34. And more... (nth [1 1 2 3 5 8] 2) (count [1 1 2 3 5 8]) (reverse [1 1 2 3 5 8]) (defn palindrome? [x] (= x (reverse x)) ) ๎€Š Proposition โ€“ naming convention
  • 35. Even more (flatten [[1 1] 2 [3 [5 8]]]) (compress "aaaabccaadeeee") (encode "aaaabccaadeeee") (replicate 10 "a")
  • 36. Where to find out more... http://clojure.org/cheatsheet http://clojure.github.com/cloj ure/clojure.core-api.html
  • 37. Your own functions ๎€Š Define your own algorithms (defn square [x] (* x x))
  • 38. Anonymous functions ๎€Š (fn ) (# ) (def sqr #(* % %))
  • 39. Overloading functions (defn make ([ ] ; the make function that takes no arguments (struct vector 0 0)) ([x y] ; ... takes x and y keywords as arguments (struct vector x y)) )
  • 40. Pure functions โ€“ no side effects ๎€Š Clojure functions are pure ๎€Š they have no side effects ๎€Š Unless you define them as such ๎€Š Pure functions are easy to develop, test, and understand ๎€Š Aim for pure functions where possible
  • 41. Clojure data structures ๎€Š ( Lists ) - Ordered collection of elements ๎€Š (list 1 3 5) '(8 13 21) ๎€Š { map } ๎€Š ๎€Š [ Vectors ] - Optimised for random access ๎€Š [:tom :dick :harry] ๎€Š Lists are for code, Vectors for data ๎€Š (nth [:tom :dick :jane :harry ] 2)
  • 42. List operations (first 1 2 3) ๎€Š The head of the list (last 7 8 9) ๎€Š The last element of the list (rest 1 2 3 4 5) ๎€Š Everything but the head (cons :new-list '(1 2 3 4 5)) ๎€Š New list, given head and tail
  • 43. More data structures... (defstruct date :day :month :year) (struct date) ๎€Š as we did not specify any parameters, we just get nil values ๎€Š things in curly brackets are hash maps - the usual Java hashmaps
  • 44. maps ๎€Š { :a 1 :b 2} ๎€Š user=> { :a 1 :b 2} ๎€Š {:a 1, :b 2} ๎€Š user=> { :a 1 :b } ๎€Š java.lang.ArrayIndexOutOfB oundsException: 3 ๎€Š user=> { :a 1 :b 2} ๎€Š {:a 1, :b 2} ๎€Š user=> { :a 1 :b 3} ; this should make the repl complain in clojure 1.2, fine in 1.1 ๎€Š {:a 1, :b 3} ๎€Š user=> {:a {:a 1}} ๎€Š {:a {:a 1}} ๎€Š user=> {{:a 1} :a} ๎€Š {{:a 1} :a} ๎€Š ; idiom - put :a on the left
  • 45. Vectors ๎€Š [:neo :morpheus :trinity :smith] ๎€Š [:matrix-characters [:neo :morpheus :trinity :smith]] ๎€Š (first [:neo :morpheus :trinity :smith]) ๎€Š (nth [:matrix :babylon5 :firefly :stargate] 2) ๎€Š (concat [:neo] [:trinity]) ๎€Š (def my-vector ๎€Š (vector? x)
  • 46. Your own data structures ๎€Š Special forms (def johnny {:first-name "John", :last-name "Stevenson"}) (defstruct person :first-name :last-name) (defrecord person [String :first-name String :last-name] :allow-nulls false)
  • 47. Memory use ๎€Š Once all references to an immutable structure disappears it can be garbage collected. ๎€Š Loops that create intermittent structures are garbage collected every turn of the loop. ;;Memory : 0 (let [a (range 50000)]) ;; Memory: "big" while the let is "executing" ;;Memory : 0 -- no reference to a anymore !
  • 48. macros ๎€Š Define extensions to the language ๎€Š Clojure only has 7 primitive functions ๎€Š Everything else in the language is created with macros ๎€Š Allows the language to be extended easily without changes to the compiler
  • 49. Special forms ๎€Š Recognized by the Clojure compiler and not implemented in Clojure source code. ๎€Š A relatively small number of special forms ๎€Š New ones cannot be implemented ๎€Š catch, def, do, dot ('.'), finally, fn, if, let, loop, monitor-enter, monitor-exit, new, quote, recur, set!, throw, try and var
  • 50. if user=> (doc if) ------------------------- if Special Form Please see http://clojure.org/special_forms#if nil
  • 51. Sequences ๎€Š Sequences are logical views of collections ๎€Š Logical lists ๎€Š Java collections, Clojure-specific collections, strings, streams, directory structures and XML trees. ๎€Š New Clojure collections created efficiently ๎€Š Creates a sort of branch (delta) in the data structure tree
  • 52. Working with Sequences ๎€Š first ๎€Š rest ๎€Š cons
  • 53. Software Transactional Memory ๎€Š Works like transactional databases ๎€Š Provides safe, concurrent access to memory ๎€Š Agents allow encapsulated access to mutable resources
  • 54. Sharing mutable data ๎€Š Use mutable references to immutable data ๎€Š Reference Types ๎€Š synchronous access to multiple pieces of shared data ("coordinated") by using STM ๎€Š Atoms ๎€Š synchronous access to a single piece of shared data. ๎€Š Agents ๎€Š asynchronous access to a single piece of shared data
  • 55. Name-spaces ๎€Š Define a namespace (ns name-space-name) ๎€Š Include namespace code (use 'names-space-name) ๎€Š Like a package statement in Java
  • 56. Clojure Libraries (use 'clojure.contrib.str-utils) ' ๎€Š Dont treat the next thing as a function ๎€Š Open source libraries - http://clojars.org/
  • 57. Recursive functions ๎€Š Functions that call themselves ๎€Š Fractal coding ๎€Š Tail recursion ๎€Š Avoids blowing the heap ๎€Š A trick as the JVM does not support tail recursion directly :-(
  • 58. Tail recursion (defn factorial [x] (if (= x 0) 1 (* x (factorial (- x 1)) ))) ๎€Š Dont blow your stack !!
  • 59. TDD with Clojure is nice ๎€Š Clojure test (deftest test-name (is (= value (function params))) )
  • 60. Simple test (ns simple-test (:use clojure.test) (:use simple)) (deftest simple-test (is (= (hello) "Hello world!")) (is (= (hello "test") "Hello test!")))
  • 61. Working with Java ๎€Š Java Classes ๎€Š fullstop after class name ๎€Š (JFrame. ) ๎€Š (Math/cos 3) ; static method call ๎€Š Java methods ๎€Š fullstop before method name ๎€Š (.getContentPane frame) ;;method name first ๎€Š (. frame getContentPane) ;;object first
  • 62. Importing (ns drawing-demo (:import [javax.swing JPanel JFrame] [java.awt Dimension]))
  • 63. Working with Java (2) ๎€Š Clojure gives you clean, simple, direct access to Java ๎€Š call any Java API directly ๎€Š (System/getProperties) ๎€Š -> {java.runtime.name=Java(TM) SE Runtime Environment
  • 64. Calling Clojure from Java ๎€Š Export the clojure to a .jar ๎€Š Add the jar to the classpath ๎€Š Import the library in your code ๎€Š Call it like any other method
  • 65. Errors are inevitable ๎€Š In the REPL (printStackTrace *e) ๎€Š *e holds the last exception raised ๎€Š Clojure exceptions are Java exceptions
  • 66. Managing State in Immutable world ๎€Š Mutable data structures to share between threads (Software Transactional Memory) ๎€Š refs, vars, atoms, agents ๎€Š No locks required for thread safe code, no deadlocks or race conditions ๎€Š Atomically apply changes
  • 67. Mutable functions ๎€Š Swap! ๎€Š ๎€Š Name functions that have side effects with an exclamation mark ๎€Š Naming convention
  • 68. Deployment ๎€Š lein jar ๎€Š lein uberjar
  • 69. Documentation (doc function-name) (javadoc class-name) (defn function-name โ€œA meaningful description of the functionโ€ params ) ๎€Š Show fn description ๎€Š Show javadoc in browser ๎€Š Write documentation for your own functions
  • 70. Example documentation (doc str) Use doc to print the documentation for str: user=> (doc str) ------------------------- clojure.core/str ([] [x] [x & ys]) With no args, returns the empty string. With one arg x, returns x.toString(). (str nil) returns the empty string. With more than one arg, returns the concatenation of the str values of the args. ๎€Š Fully qualified namespace ๎€Š Arguments ๎€Š Details
  • 71. find-doc (find-doc โ€œreduceโ€) user=> (find-doc "reduce" ) ------------------------- clojure/areduce ([a idx ret init expr]) Macro ... details ... ------------------------- clojure/reduce ([f coll] [f val coll]) ... details ... ๎€Š Search for functions you dont know ๎€Š Keyword parameter
  • 72. Autodoc ๎€Š Generate a website for your API's ๎€Š http://tomfaulhaber.github.com/auto doc/ ๎€Š Add dependency to your build file ๎€Š http://clojars.org/org.clojars.rayne/autodoc ๎€Š lein deps ๎€Š lein autodoc
  • 73. Where next ๎€Š Coding dojo โ€“ London / start your own ๎€Š www.londonjavacommunity.co.uk ๎€Š Books โ€“ Programming Clojure (Pragmatic) ๎€Š Website โ€“ clojure.org dev.clojure.org ๎€Š Full Disclojure vimeo.com/channels/fulldisclojure ๎€Š clojure.jr0cket.co.uk ๎€Š 99 problems in clojure
  • 74. Credits No parentheses were harmed in the making of this presentation....
  • 75. TThhaannkk yyoouu ๎€Š HHaavvee ffuunn lleeaarrnniinngg !!!! JJoohhnn@@jjrr00cckkeett..ccoomm @@jjrr00cckkeett jjoohhnn..jjrr00cckkeett..ccoo..uukk cclloojjuurree..jjrr00cckkeett..ccoo..uukk

Editor's Notes

  1. Clojure has a programmatic macro system which allows the compiler to be extended by user code You can add your own language features with macros. Clojure itself is built out of macros such as defstruct: (defstruct person :first-name :last-name) If you need different semantics, write your own macro. If you want a variant of structs with strong typing and configurable null-checking for all fields, you can create your own defrecord macro, to be used like this: (defrecord person [String :first-name String :last-name] :allow-nulls false) This ability to reprogram the language from within the language is the unique advantage of Lisp. You will see facets of this idea described in various ways: Lisp is homoiconic - Lisp code is just Lisp data. This makes it easy for programs to write other programs. The whole language is there, all the time. Paul Grahamโ€™s essay โ€œRevenge of the Nerdsโ€ explains why this is so powerful. http://www.paulgraham.com/icad.html Lisp syntax also eliminates rules for operator precedence and associativity, with fully parenthesized expressions, there is no possible ambiguity
  2. Hickey&amp;apos;s primary interest was concurrency โ€” he wanted the ability to write multi-threaded applications, but increasingly found the mutable, stateful paradigm of object oriented programming to be part of the problem The idea of a functional Lisp integrated with a commercially accepted host platform just seemed like chocolate and peanut butter. Coming up with persistent data structures that were fast enough was the tipping point for my considering it viable. functions as first-class objects, meaning that functions can be placed into data structures, passed as arguments to other functions, evaluated in comparisons, even returned as the return value of another function. Moreover, functions do not have &amp;quot;side effects&amp;quot; โ€” the ability to modify program state or data. This paradigm focuses on computation in the mathematical sense, rather than procedural algorithms, and is a completely different approach to programming. Clojure does provide persistent data structures For application developers, the most significant distinction is that Clojure defaults to making all data structures immutable developers must use one of four special mutable structures that are explicitly designed to be shared between threads: refs, vars, atoms, and agents. Clojure uses software transactional memory (STM) to coordinate changing these mutable structures while keeping them in a consistent state, much like a transactional database. This model makes it considerably simpler to write thread-safe code than it is in object oriented languages. No locks are required, therefore there are no deadlocks or race conditions.
  3. Throw away your knowledge about OO and try something different
  4. The downside of Lispโ€™s simple, regular syntax, at least for beginners, is Lispโ€™s fixation on parentheses and on lists as the core data type. Clojure offers an interesting combination of features that makes Lisp more approachable for non-Lispers.
  5. The downside of Lispโ€™s simple, regular syntax, at least for beginners, is Lispโ€™s fixation on parentheses and on lists as the core data type. Clojure offers an interesting combination of features that makes Lisp more approachable for non-Lispers.
  6. The downside of Lispโ€™s simple, regular syntax, at least for beginners, is Lispโ€™s fixation on parentheses and on lists as the core data type. Clojure offers an interesting combination of features that makes Lisp more approachable for non-Lispers.
  7. The downside of Lispโ€™s simple, regular syntax, at least for beginners, is Lispโ€™s fixation on parentheses and on lists as the core data type. Clojure offers an interesting combination of features that makes Lisp more approachable for non-Lispers.
  8. The downside of Lispโ€™s simple, regular syntax, at least for beginners, is Lispโ€™s fixation on parentheses and on lists as the core data type. Clojure offers an interesting combination of features that makes Lisp more approachable for non-Lispers.
  9. Note: prefix notation
  10. What are the 7 primitive functions?
  11. When you require a library named clojure.contrib.str-utils, Clojure looks for a file named clojure/contrib/str-utils.clj on the CLASSPATH To avoid having to use the namespace for your library, you have to use refer, like so - (refer &amp;apos;examples/introduction) The use function does both require refer, like so โ€“ (use &amp;apos;examples.introduction) o force a library to reload: (use :reload-all &amp;apos;examples.introduction) The :reload-all flag is useful if you are making changes and want to see results without restarting the REPL.
  12. This is barfing because the evaluator has to keep around state for each call due to the expression (* x (factorial (- x 1))) . We need to make this function tail recursive. recur can be thought of as the Clojure operator for looping. Think of it like a function call for the nearest enclosing let or function definition supplied with new variables. Naively we can switch over to using this by doing: user&amp;gt; (defn factorial2 [x] (if (= x 0) 1 (* x (recur (- x 1))))) But this is a compile-time error (which in itself is pretty neat!). java.lang.UnsupportedOperationException: Can only recur from tail position (NO_SOURCE_FILE:4) An accumulator parameter is an extra parameter to a function that&amp;apos;s used to gather intermediate parts of the calculation. If we do this, we can make sure that the recur call is in the tail position. Using an anonymous function we get: (defn factorial3 [x] ((fn [x y] (if (= x 0) y (recur (- x 1) (* x y)))) x 1)) Now when recur is used, it doesn&amp;apos;t need to keep any of the previous stack frame around. This means we can finally calculate factorial 1000000, which begins with 282 and ends with lots of zeros!
  13. Use doc to print the documentation for str: user=&amp;gt; (doc str) ------------------------- clojure.core/str ([] [x] [x &amp; ys]) With no args, returns the empty string. With one arg x, returns x.toString(). (str nil) returns the empty string. With more than one arg, returns the concatenation of the str values of the args. The first line of docโ€™s output contains the fully qualified name of the function. The next line contains the possible argument lists, generated directly from the code. (Some common argument names and their uses are explained in the sidebar on the following page.) Finally, the remaining lines contain the functionโ€™s doc-string, if the function definition included one.