Skip to content

Instantly share code, notes, and snippets.

View chrismurrph's full-sized avatar

Chris Murphy chrismurrph

View GitHub Profile
@chrismurrph
chrismurrph / index.html
Created October 29, 2015 01:38 — forked from cstorey/index.html
A trivial clojurescript paint program using Reagent and core.async. Greatly inspired by the RxJS paint example.
<html>
<head>
<script src="out/goog/base.js" type="text/javascript"></script>
<script src="hello_world.js" type="text/javascript"></script>
<script type="text/javascript">goog.require("hello_world.core");</script>
</head>
<body>
</body>
<script type="text/javascript">hello_world.core.run()</script>
</html>