1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/perf.mal
2015-02-09 00:23:10 -06:00

8 lines
195 B
Plaintext

(defmacro! time
(fn* (exp)
`(let* (start_FIXME (time-ms)
ret_FIXME ~exp)
(do
(prn (str "Elapsed time: " (- (time-ms) start_FIXME) " msecs"))
ret_FIXME))))