Skip to content

Instantly share code, notes, and snippets.

@timmc
Forked from dcolish/gist:5039976
Last active December 14, 2015 06:08
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 timmc/5040043 to your computer and use it in GitHub Desktop.
Save timmc/5040043 to your computer and use it in GitHub Desktop.
(defn write-builder [cube & ats]
(loop [builder (WriteBuilder. cube)
ats ats]
(if (empty? ats)
builder
(recur (.at builder# (first ats#) ...missing-arg...)
(rest ats#)))))
(write-builder cube [[time (now)]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment