ANN: ClojureScript 1.9.908

2017-08-16 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.9.908"] This release includes a number of bug fixes and changes based on feedback from the

Re: Clojure rookie vs parsing

2017-08-16 Thread Gregg Reynolds
On Aug 15, 2017 7:11 AM, wrote: Hi Months ago I read a review that praised Clojure's clean approach and use of JVM that is almost always available in my deployments. My background: started with 370 assembly hoorah! HCF! (check out boot - JCL, done right!) What I

Re: Clojure rookie vs parsing

2017-08-16 Thread Alan Thompson
While Instaparse is (IMHO) the best parser for use with Clojure, you don't have to start from such a low level (i.e. parsing a char stream text file). Just re-write your original problem a little and you can skip writing a custom parser. In Clojure, perhaps the most popular format (certainly the

Re: Entity–component–system and Clojure

2017-08-16 Thread Thomas
If I am not mistaken Lightable uses it as well. There is also a plug in for it which helps with the ECS. Hope that helps. Thomas On Wednesday, 16 August 2017 02:52:38 UTC+2, Didier wrote: > > I recently stumbled upon the entity-component-system design pattern which > is popular in game engine