From 569f88bb3e188a9cc439ebb201e7cd03d2fd98ca Mon Sep 17 00:00:00 2001 From: Henrikh Kantuni Date: Wed, 1 Apr 2020 13:58:58 +0400 Subject: [PATCH] Clojure --don't-- doesn't care! --- content/cftbat/do-things.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/cftbat/do-things.html b/content/cftbat/do-things.html index f027ae3b..3c43af69 100644 --- a/content/cftbat/do-things.html +++ b/content/cftbat/do-things.html @@ -265,7 +265,7 @@

Maps

{:name {:first "John" :middle "Jacob" :last "Jingleheimerschmidt"}}
 
-

Notice that map values can be of any type—strings, numbers, maps, vectors, even functions. Clojure don’t care!

+

Notice that map values can be of any type—strings, numbers, maps, vectors, even functions. Clojure doesn’t care!

Besides using map literals, you can use the hash-map function to create a map:

(hash-map :a 1 :b 2)
 ; => {:a 1 :b 2}