683d0f4dbe
The `flatten_tuple` function was unnecessarily recursive. It can now simply return the elements of the tuple directly. The VM's destructuring logic has been updated to handle nested destructuring more efficiently. A new integration test case for multi-level destructuring has been added.
12 lines
205 B
Plaintext
12 lines
205 B
Plaintext
(do
|
|
(def pipe (fn [conf]
|
|
(do
|
|
(def [str s] conf)
|
|
(def [f ss] s)
|
|
["Symbol:" str "field:" f "id:" ss]
|
|
)
|
|
)
|
|
)
|
|
|
|
(pipe ["btc" [:close "cls"]])
|
|
) |