From 937a452bf50b97fb9f0f94de6af168f7c1ce2f54 Mon Sep 17 00:00:00 2001 From: Oliver Caldwell Date: Sat, 15 Feb 2025 11:53:51 +0000 Subject: [PATCH] Add some states and sorting of them for #645 --- dev/clojure/src/dev/sandbox.cljc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/dev/clojure/src/dev/sandbox.cljc b/dev/clojure/src/dev/sandbox.cljc index cc4e878c..1e11c5ee 100644 --- a/dev/clojure/src/dev/sandbox.cljc +++ b/dev/clojure/src/dev/sandbox.cljc @@ -161,3 +161,16 @@ (comment (clojure.pprint/pprint stu) (pr stu)) + +(def us-states + {"AK" "Alaska" + "AL" "Alabama" + "AR" "Arkansas" + "AZ" "Arizona" + "CA" "California" + "CO" "Colorado" + "CT" "Connecticut" + "DE" "Delaware" + "FL" "Florida"}) + +(into (sorted-map) us-states)