DEV Community

Discussion on: Using Python's Type Annotations

Collapse
 
akashganesan profile image
AkashGanesan

Actually, when the language had type inferences, it gets a lot easier and the intent is almost always made clear with type annotations. Haskell is a prime example of how easy it is to use the type system to guide program correctness. Oh, And the thing can look like a dynamically typed language because of the inference engine doing most of the heavy lifting for you.