spaik 0.3.1

The SPAIK Programming Language
Documentation
1
2
3
4
5
6
(defmacro timeit (&body it)
  `(let* ((s (instant))
          (res (progn ,@it)))
     (let ((el (- (instant) s)))
       (println "Executed in {el} seconds"))
     res))