Is the Compojure wiki up-to-date? I’ve just tried testing the following destructuring example and it doesn’t return what I expected:
(compojure/GET "/test" [item]
(str "<h1>You don't win friends with" item "!</h1>"))
;; Expected
$ curl <http://localhost:3000/test?item=salad>
<h1>You don't win friends with salad!</h1>
;; Observed
$ curl <http://localhost:3000/test?item=salad>
<h1>You don't win friends with !</h1>
(from https://github.com/weavejester/compojure/wiki/Destructuring-Syntax)(LMK if this is the wrong place to ask this)