mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Added more clojure blurb
This commit is contained in:
parent
578317152f
commit
6b4434cd05
@ -1,9 +1,16 @@
|
|||||||
---
|
---
|
||||||
language: clojure
|
language: clojure
|
||||||
author: Adam Bard
|
author: Adam Bard
|
||||||
|
author_url: http://adambard.com/
|
||||||
---
|
---
|
||||||
|
|
||||||
Clojure is rad
|
Clojure is a variant of LISP developed for the Java Virtual Machine. It has
|
||||||
|
a much stronger emphasis on pure [functional programming](https://en.wikipedia.org/wiki/Functional_programming) than
|
||||||
|
Common Lisp, but includes several [STM](https://en.wikipedia.org/wiki/Software_transactional_memory) utilities to handle
|
||||||
|
state as it comes up.
|
||||||
|
|
||||||
|
This combination allows it to handle concurrent processing very simply,
|
||||||
|
and often automatically.
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
; Comments start with semicolons.
|
; Comments start with semicolons.
|
||||||
|
Loading…
Reference in New Issue
Block a user