This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-03-27
Channels
- # announcements (3)
- # aws (7)
- # babashka (11)
- # beginners (96)
- # clojure (15)
- # clojure-europe (9)
- # clojure-germany (2)
- # clojure-italy (1)
- # clojure-nl (3)
- # clojure-poland (3)
- # clojure-serbia (1)
- # clojurescript (13)
- # depstar (28)
- # fulcro (34)
- # graalvm (5)
- # honeysql (5)
- # malli (11)
- # off-topic (27)
- # pathom (9)
- # polylith (74)
- # portal (10)
- # re-frame (13)
- # releases (1)
- # ring (8)
- # shadow-cljs (3)
- # spacemacs (10)
- # tools-deps (8)
➜ let-go git:(main) ✗ bb -e '(time (loop [x 1000000] (if (pos? x) (recur (dec x)) x)))'
"Elapsed time: 338.592783 msecs"
0
➜ let-go git:(main) ✗ joker -e '(time (loop [x 1000000] (if (pos? x) (recur (dec x)) x)))'
"Elapsed time: 1662.035000 msecs"
0
➜ let-go git:(main) ✗ ./lg -e '(time (loop [x 1000000] (if (pos? x) (recur (dec x)) x)))'
Elapsed: <go.time.Duration 587.623256ms>
0
➜ let-go git:(main) ✗ planck -e '(time (loop [x 1000000] (if (pos? x) (recur (dec x)) x)))'
"Elapsed time: 1.365266 msecs"
0