Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
11
Task/Time-a-function/Janet/time-a-function.janet
Normal file
11
Task/Time-a-function/Janet/time-a-function.janet
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
(defmacro time
|
||||
"Print the time it takes to evaluate body to stderr.\n
|
||||
Evaluates to body."
|
||||
[body]
|
||||
(with-syms [$start $val]
|
||||
~(let [,$start (os/clock)
|
||||
,$val ,body]
|
||||
(eprint (- (os/clock) ,$start))
|
||||
,$val)))
|
||||
|
||||
(time (os/sleep 0.5))
|
||||
Loading…
Add table
Add a link
Reference in a new issue