Issue #13 addressed.

Calvin Rose 2018-12-09 13:48:09 -05:00
parent a8f03eb7e7
commit 34484e9ffa
1 changed files with 1 additions and 1 deletions

@ -372,7 +372,7 @@ itself, and the second parameter is the key.
(get @{:a 1} :a) # -> 1
(get {:a 1} :a) # -> 1
(get @[:a :b :c] 2) # -> :c
(get (tuple "a" "b" "c") 1) # -> "a"
(get (tuple "a" "b" "c") 1) # -> "b"
(get @"hello, world" 1) # -> 101
(get "hello, world" 0) # -> 104
```