Pipe testing

This commit is contained in:
Michael Schimmel
2025-12-26 17:20:00 +01:00
parent 185f8273dd
commit d5d71afdaa
13 changed files with 569 additions and 193 deletions
+5
View File
@@ -0,0 +1,5 @@
;; EXPECT: <series[0]>
(do
(def btc-ma (pipe [btc [:Close]] (fn [c] (do {:ma c}))))
(.ma btc-ma)
)