The hard part with other runtimes will be details around things like garbage collection for the implementation of persistent data structures.
Clojurescript is a better example of how this is done since most of the impls are implemented in the language itself, different from clojure-proper. Granted, printed-text compiler output sucks, but it all seems to work. Here's the javascript emission stage: https://github.com/clojure/clojurescript/blob/master/src/clj/cljs/compiler.clj#L206 It's been ported to gambit-scheme: https://github.com/takeoutweight/clojure-scheme/blob/rewrite/src/clj/cljscm/compiler.clj On Tue, Apr 29, 2014 at 10:45 AM, Divyansh Prakash < [email protected]> wrote: > I looked into a port of Clojure to Parrot, and it basically does the same > thing<https://github.com/ayardley/ClojurePVM/blob/master/src/c/lisp/microlisp/lisp.c> > . > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
