Closed tmarble closed 7 years ago
@dcerys yes. Because it's in "test" scope it will not end up in the final jar. However this way we can use it on the REPL, for example:
pamela.cli> (use 'criterium.core) pamela.cli> (defn dummy [] (dotimes [i 3] (do (println "before" i) (Thread/sleep 1000) (println "after" i)))) pamela.cli> (criterium.core/with-progress-reporting (criterium.core/bench (dummy) :verbose :samples 3))
@dcerys yes. Because it's in "test" scope it will not end up in the final jar. However this way we can use it on the REPL, for example: