Created
November 28, 2016 19:04
-
-
Save sfermigier/9f60f01d1b4e8508a3a56bc423c068ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ ~ planck | |
Planck 1.17 | |
ClojureScript 1.9.229 | |
Docs: (doc function-name-here) | |
(find-doc "part-of-name-here") | |
Source: (source function-name-here) | |
Exit: Control+D or :cljs/quit or exit or quit | |
Results: Stored in vars *1, *2, *3, an exception in *e | |
cljs.user=> (time (apply + (range 1e7))) | |
"Elapsed time: 35.000000 msecs" | |
49999995000000 | |
cljs.user=> (time (apply + (range 1e7))) | |
"Elapsed time: 78.000000 msecs" | |
49999995000000 | |
cljs.user=> (time (apply + (range 1e7))) | |
"Elapsed time: 95.000000 msecs" | |
49999995000000 | |
cljs.user=> (time (apply + (range 1e7))) | |
"Elapsed time: 87.000000 msecs" | |
49999995000000 | |
cljs.user=> (time (apply + (range 1e7))) | |
"Elapsed time: 102.000000 msecs" | |
49999995000000 | |
cljs.user=> (time (apply + (range 1e7))) | |
"Elapsed time: 124.000000 msecs" | |
49999995000000 | |
cljs.user=> (time (apply + (range 1e7))) | |
"Elapsed time: 175.000000 msecs" | |
49999995000000 | |
cljs.user=> (time (apply + (range 1e7))) | |
"Elapsed time: 310.000000 msecs" | |
49999995000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment