Clojure eXchange 2015

2015-12-07 Thread Eric Le Goff
Just found that talks are available on Skills Matter https://skillsmatter.com/conferences/6861-clojure-exchange-2015#skillscasts Eric -- 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

Function syntax

2015-08-13 Thread Eric Le Goff
this just a matter of personal style ? Thanks -- Eric Le Goff http://fr.linkedin.com/in/elegoff @elegoff <https://twitter.com/elegoff> -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegrou

Metadata

2015-08-05 Thread Eric Le Goff
The page http://clojure.org/metadata states that it "can also be used by application developers for many purposes, annotating data sources, policy etc." Could anyone elaborate about some real use case scenarios where they need to use this metadata feature ? Regards, -- Eric Le

Basic usage of namespaces

2014-12-24 Thread Eric Le Goff
While writing my first clojure application, I guess I am facing beginner issue with namespacing : I defined a function in a dedicated namespace i.e (ns myapp.other) (defn foo [x] (+x 42)) and try to use the foo from a different namespace It seems *(require 'myapp.other) ;*; is not enough to ca

equality

2014-01-27 Thread Eric Le Goff
Newbie question : user=> (= 42 42) true user=> (= 42 42.0) false I did not expect last result. I understand that underlying classes are not the same i.e user=> (class 42) java.lang.Long user=> (class 42.0) java.lang.Double but anyway I'am surprised Cheers -- Eric -- -- You received this

Akka-like framework in Clojure ?

2013-12-27 Thread Eric Le Goff
Hi, After a long background with imperative languages such as Java, I recently spent some time learning functionnal programming, starting with Scala. I had the opporrtunity to build a demo project based on the Akka framework. Now I am starting learning Clojure, and would be curious to know if the