@clojuregeek: "it figures out what it type it is” is a bit unclear
danielcompton: I illustrate what type it is uses by using the class function.
@clojuregeek: sure, but the whole sentence is a little unclear "for example defining a var it figures out what it type it is"
I could be wrong but i don't think the type is determined when you define a var
ok the assignment is when the type is set then, right?
no that can’t be it ..
user=> (def blah)
#'user/blah
user=> (class blah)
clojure.lang.Var$Unbound
the type of the var depends what value (if any you give it)
i can just take that part out :simple_smile:
i’ll work on it some more. thanks for the feedback :simple_smile: