jaunt-lang / jaunt

[ABANDONED] A jaunt away from Clojure
https://github.com/jaunt-lang/jaunt/issues/157
134 stars 6 forks source link

Create :jnt reader conditional support #123

Closed arrdem closed 8 years ago

arrdem commented 8 years ago

This changeset has one primary change: supporting the :jnt conditional clause in addition to :clj.

#?(:cljs "nope" :jnt "w00t" :clj "nope")
;; => "w00t"

#?(:cljs "nope" :clj "still works")
;; => "still works"

Incidental changes to this end include:

Fixes #68

arrdem commented 8 years ago

Needs reader tests...

arrdem commented 8 years ago

:shipit: