Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clojure presentation for beginners?

I need to make a presentation for beginners about the Clojure language. What are your suggestions on selecting topics on it? What are the points I need to include?

Note: By beginners, I mean that they are experienced in other programming paradigms, but not in the functional programming model.

like image 558
Abimaran Kugathasan Avatar asked Jul 25 '11 00:07

Abimaran Kugathasan


4 Answers

I personally think this presentation is a great introduction to Clojure:

Clojure:Functional Concurrency for the JVM - Howard M. Lewis Ship

And obviously any presentation by Rich Hickey himself, for example

Clojure: A dynamic programming language for the JVM

like image 78
Nicolas Modrzyk Avatar answered Nov 08 '22 20:11

Nicolas Modrzyk


You've got to think about your target audience. I'm going to make an assumption that they probably know Java.

The best authority on Clojure is the source himself, Rich Hickey. He's written an introduction to Clojure for Java Programmers.

Slides are here.

Him giving the presentation with audio is here and part2 is here.

like image 38
hawkeye Avatar answered Nov 08 '22 18:11

hawkeye


If need, you can take my presentation about Clojure - PDF is freely available...

like image 2
Alex Ott Avatar answered Nov 08 '22 20:11

Alex Ott


I found this blog entry yesterday -- impressive how easy is to make Clojure programs parallel (pmap in place of map :D ). Sadly, on my PC it didn't run on multiple cores but I haven't investigated it yet.

Use examples from books like Joy of Clojure -- they are very idiomatic and well designed. In this book there are also reasons on design of language and -- what is most important to you -- why functions+immutability is better for multithreaded programming than procedures+OO mutability.

Yes, I think parallelism is important to tell. But also -- in my opinion -- it is always crucial to convince non-lisp-listeners that The Parentheses Hell is not a hell but blessing ;) Tell about Beating the Averages and why Lisps are the most powerful languages in the world.

Try not to teach them a language but show why to learn it.

Oh, and prepare that someone in the audience will ask "why no for loop" or "why no constants" or "how come immutability doesn't lead to performance problems".

like image 2
kgadek Avatar answered Nov 08 '22 19:11

kgadek