]> git.rkrishnan.org Git - sicp.git/blobdiff - src/sicp/utils.clj
solution to 4.31
[sicp.git] / src / sicp / utils.clj
index 258ac6080cb2b19e170c13cb04fcc4da42f48e24..516b0141eba9306c16ded1167c800cb8d5407110 100644 (file)
@@ -42,6 +42,9 @@
 (defn approx-equal [x y]
   (< (abs (- x y)) 0.00001))
 
+(defn error [^String string]
+  (throw (Exception. string)))
+
 (defmacro microbench
   " Evaluates the expression n number of times, returning the average
     time spent in computation, removing highest and lowest values.