Fork me on GitHub
#code-reviews
<
2015-07-12
>
danielcompton08:07:15

@clojuregeek: "it figures out what it type it is” is a bit unclear

clojuregeek21:07:32

danielcompton: I illustrate what type it is uses by using the class function.

danielcompton21:07:15

@clojuregeek: sure, but the whole sentence is a little unclear "for example defining a var it figures out what it type it is"

danielcompton21:07:46

I could be wrong but i don't think the type is determined when you define a var

clojuregeek21:07:25

ok the assignment is when the type is set then, right?

clojuregeek21:07:40

no that can’t be it ..

clojuregeek21:07:53

user=> (def blah)
#'user/blah
user=> (class blah)
clojure.lang.Var$Unbound

clojuregeek21:07:34

the type of the var depends what value (if any you give it)

clojuregeek21:07:45

i can just take that part out simple_smile

clojuregeek21:07:49

i’ll work on it some more. thanks for the feedback simple_smile