user=> (type 10000N)clojure.lang.BigIntuser=> (class 10000N)clojure.lang.BigInt
user=> (class 1)java.lang.Longuser=> (type 1)java.lang.Long
user=> (type \a)java.lang.Characteruser=> (class \a)java.lang.Character
user=> (class "string")java.lang.Stringuser=> (type "string")java.lang.String
Does anyone have a link to a Rich Hickey video or article where he covers this off? I know I've seen a few but I haven't stored the links
Cheers
Adrian
What's the benefit of hiding/abstracting the underlying platform away?