(get "foo" 0) ; \f (get {:foo 'bar} :foo) ; bar (get #{0 1 2} 1) ; 1 (get [:a :b :c] 1) ; :b (def path [0 :foo 1]) (get-in [{:foo "bar"} 1 2] path) ;\a