code-reviews

danielcompton 2015-07-12T08:38:15.000762Z

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

clojuregeek 2015-07-12T21:32:32.000768Z

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

danielcompton 2015-07-12T21:34:15.000769Z

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

danielcompton 2015-07-12T21:34:46.000770Z

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

clojuregeek 2015-07-12T21:35:25.000771Z

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

clojuregeek 2015-07-12T21:37:40.000772Z

no that can’t be it ..

clojuregeek 2015-07-12T21:37:53.000773Z

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

clojuregeek 2015-07-12T21:38:34.000774Z

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

clojuregeek 2015-07-12T21:38:45.000775Z

i can just take that part out :simple_smile:

clojuregeek 2015-07-12T21:43:49.000776Z

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