Skip to content

Instantly share code, notes, and snippets.

View enolan's full-sized avatar

Echo Nolan enolan

View GitHub Profile
; Goal: Turn Array `["foo", "bar", "baz"]` into String `"ordered: 1=foo 2=bar 3=baz"`.
; Clojure
;; Read arguments from command line
;; (def argv *command-line-args*)
;; Fake command-line arguments for use in REPL
(def argv (seque ["foo" "bar" "baz"]))