ClojureScript says Boo!

intro

Demo clojurescript gist for programming enchiladas

19 Mar 2013 by rm-hull
rm-hull/5201050
simple-demo.cljs
(ns example)

;; Print output goes to the output buffer

(doseq [a (range 10)
        b (range a)]
  (println a "x" b "=" (* a b)))

(js/alert "ClojureScript says 'Boo!'")