|
|
|
|
|
by jeremiep
3456 days ago
|
|
Theres the new clojure.spec[1] in 1.9 and core.typed[2] adds an optional type system as well. [1]: http://clojure.org/about/spec
[1]: https://github.com/clojure/core.typed The REPL-driven development of Lisps makes types not as important because everything is interactively tested as you write it. Having an optional type system makes it much easier to start with dynamic types and gradually add type annotations as your architecture stabilizes. |
|