Files
RustAst/examples/tuple-struct.myc
T

15 lines
302 B
Plaintext

;; Benchmark: 513ns
;; Benchmark-Repeat: 3911
;; 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"]])
)