New submission from John Michael Lafayette:
With a lot of languages, I can tell
that the type I am getting is an instance of the declared type I'm assigning it
to.
Example:
Cat c = Factory.make("cat"
Animal d = Factory.make("dog")
Python:
val c = Factory.make("ca
New submission from John Michael Lafayette:
I love the new type hint feature in Jetbrains IDE (PEP 0484). Now when my user
defined methods return a value, I can press (Crtl+space) and see the type of
that value and all its methods. Also, when I pass the wrong type in, I get a
warning.
Oddly