Files
RustAst/examples/tuple-struct.myc
T
Michael Schimmel a18642fd7b Update example output comments
Add `Output` comments to the example files to reflect the actual output
of the programs. This helps with verifying correctness and understanding
example behavior.
2026-03-02 23:46:44 +01:00

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"]])
)