Pipe Parameter is now a Tuple

This commit is contained in:
Michael Schimmel
2026-01-05 00:13:51 +01:00
parent 242ec9a56e
commit 264314cd93
15 changed files with 322 additions and 1244 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
;; EXPECT: <series[0]>
(do
(def btc-ma (pipe [btc [:Close]] (fn [c] (do {:ma c}))))
(def btc-ma (pipe [[btc [:Close]]] (fn [c] (do {:ma c}))))
(.ma btc-ma)
)