Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 753 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 753 Bytes

Intro to Functions in Clojure

A slide deck for a little session introducing Clojure functions to beginning programmers, written for ClojureBridge NYC 2017.

View these slides online: https://clojurebridge-nyc.github.io/functions-in-clojure-slides/

Slides created via AsciiDoc. All images from wikimedia commons.

To build locally:

brew install asciidoc               # Or apt-get or whatnot
pip install pygments
asciidoc index.adoc && open index.html

Auto-building:

brew install fswatch
fswatch -o index.adoc | xargs -n1 -I{} asciidoc index.adoc

To publish to github:

asciidoc index.adoc
git checkin -m "Updating compiled slides" index.html
git push origin master