clojure-by-example icon indicating copy to clipboard operation
clojure-by-example copied to clipboard

Fix a mistake in the result of a "get" form

Open p0w1nd opened this issue 3 years ago • 0 comments

Original: user=> (get {:Apple "Mac" :Microsoft "Windows"} :Linux "Sorry, no Linux") nil

It should be: user=> (get {:Apple "Mac" :Microsoft "Windows"} :Linux "Sorry, no Linux") "Sorry, no Linux"

p0w1nd avatar Feb 19 '22 04:02 p0w1nd