a18642fd7b
Add `Output` comments to the example files to reflect the actual output of the programs. This helps with verifying correctness and understanding example behavior.
15 lines
302 B
Plaintext
15 lines
302 B
Plaintext
;; Benchmark: 890ns
|
|
;; Benchmark-Repeat: 2258
|
|
;; Output: ["Symbol:" "btc" "field:" :close "id:" "cls"]
|
|
(do
|
|
(def p (fn [conf]
|
|
(do
|
|
(def [str s] conf)
|
|
(def [f ss] s)
|
|
["Symbol:" str "field:" f "id:" ss]
|
|
)
|
|
)
|
|
)
|
|
|
|
(p ["btc" [:close "cls"]])
|
|
) |