Skip to content

Instantly share code, notes, and snippets.

@rm-hull
Last active December 15, 2015 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rm-hull/5201050 to your computer and use it in GitHub Desktop.
Save rm-hull/5201050 to your computer and use it in GitHub Desktop.
Demo clojurescript gist for programming enchiladas
(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!'")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment