Re: Anyone spent time with Kawa Scheme?

2018-04-11 Thread Didier
Haven't tried Kawa, and my only other Lisp experience is Emacs Lisp. That said, I think Clojure as a Lisp differentiate itself from other Lisps in that all its data-structures are built on abstractions. They default to be immutable in a performant and low memory profile way. Its got great added

Re: global-hierarchy.. private?

2018-04-11 Thread Francis Avila
I'm not certain I know what use case you're getting at. It sounds like you want to take the current state of the global hierarchy and "fork" it into a private hierarchy? Even though the var is private you can still access its value: @#'clojure.core/global-hierarchy (same as (deref (var clojure

Re: [ANN] clj-tree-layout

2018-04-11 Thread Frozenlock
Looks great, thanks! On Tuesday, April 10, 2018 at 5:19:59 PM UTC-4, Juan Monetta wrote: > > Hi everybody! > > Maybe someone else find this useful. > > clj-tree-layout A library > for laying out tree nodes in 2D space for Clojure and ClojureScript.

lein midje not working

2018-04-11 Thread Renata Soares
Hello, I am running 'lein midje' on my project and looks like an infinite loop. Doesn't show any message of error. Project.clj: (defproject job-queue "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME"; :main job-queue.core :license {:name "Eclipse

Re: lein midje not working

2018-04-11 Thread Renata Soares
It happens with 'lein repl' too (gives timeout in this case). Em quarta-feira, 11 de abril de 2018 20:27:04 UTC-3, Renata Soares escreveu: > > Hello, > > I am running 'lein midje' on my project and looks like an infinite loop. > Doesn't show any message of error. > > Project.clj: > > (defproject

RE: lein midje not working

2018-04-11 Thread Sean Corfield
Do you mean you type `lein repl` and you don’t get a prompt at all? It just hangs before then? I tried to reproduce based on the information below and it seems to work for me: (! 1115)-> lein new app job-queue Generating a project called job-queue based on the 'app' template. Wed Apr 11 16:40:5

Re: lein midje not working

2018-04-11 Thread Andy Fingerhut
The contents of your $HOME/.lein/profiles.clj file can affect the behavior of all 'lein' commands run from any project, if you have one. Andy On Wed, Apr 11, 2018 at 4:31 PM, Renata Soares wrote: > It happens with 'lein repl' too (gives timeout in this case). > > > Em quarta-feira, 11 de abril

Re: lein midje not working

2018-04-11 Thread Renata Soares
I found the problem... in my core.clj i was using (slurp *in*) to get contents via stdin. 'lein midje' performs 'lein run' first? Em quarta-feira, 11 de abril de 2018 20:27:04 UTC-3, Renata Soares escreveu: > > Hello, > > I am running 'lein midje' on my project and looks like an infinite loop.