1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00
mal/tests/perf2.mal
2019-07-16 00:16:44 +02:00

12 lines
282 B
Plaintext

(load-file "../lib/load-file-once.mal")
(load-file-once "../tests/computations.mal") ; fib sumdown
(load-file-once "../lib/perf.mal") ; time
;;(prn "Start: basic math/recursion test")
(time (do
(sumdown 10)
(fib 12)))
;;(prn "Done: basic math/recursion test")