This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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"])) |