Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save danielneal/e05f6188085e5a785568cd9761b34f77 to your computer and use it in GitHub Desktop.
Save danielneal/e05f6188085e5a785568cd9761b34f77 to your computer and use it in GitHub Desktop.
#!/usr/local/bin/planck
(ns eq.core
(:require [cljs.pprint :refer [pprint]]
[cljs.reader :as edn]
[planck.core :as planck]
[clojure.string :as string]))
(->> (repeatedly planck/read-line)
(take-while identity)
(string/join)
(edn/read-string)
(pprint))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment