ANN: ClojureScript 1.10.312, Improved Externs Inference & Webpack Guide

2018-06-15 Thread David Nolen
ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript Leiningen dependency information: [org.clojure/clojurescript "1.10.312"] This release contains many fixes and enhancements, the most notable being those around

Re: Topological sort

2018-06-15 Thread Matching Socks
user> (topological-sort {0 [1] 1 [2 3] 2 [3] 3 []}) (3 2 0 1) ! -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with you