"Typed Clojure in Practice" by Ambrose Bonnaire Sergeant

Typed Clojure is an optional type system for Clojure. Typed Clojure is being used in production systems to help programmers verify, document and design correct Clojure code. In this talk, we introduce the goals of Typed Clojure and discuss how effectively Typed Clojure works in practice. We give an overview of the kinds of problems being solved today with Typed Clojure, and where your Clojure projects might benefit from a type system like it. by Ambrose Bonnaire-Sergeant (@ambrosebs) Ambrose is the creator of Typed Clojure.

Related Talks

"Specter: overcome your fear of nested Clojure data" by Nathan Marz

"Specter: overcome your fear of nested Clojure data" by Nathan MarzClojure revolves around immutable values and manipulation of those values. However, it does not provide good mechanisms for manipulating combinations of those values: like a map of sequences of maps of maps. Code that aims to manipulate these nested data structures complects navigation code with the desired query or transformation. ...

"Relevance of ClojureScript" by Jearvon Dharrie

"Relevance of ClojureScript" by Jearvon DharrieClojureScript is a compiler for the Clojure programming language that targets Javascript. One of ClojureScript's goals is to provide features that Javascript lacks. Some of these features are macros, concurrent programming and persistent data structures. With the release of ES6 and other Javascript advancements, one might ask "is ClojureScript still ...