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
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
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
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
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
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