Tagged Questions
7
votes
3answers
319 views
How to make these dynamically typed functions type-safe?
Is there any programming language (or type system) in which you could express the following Python-functions in a statically typed and type-safe way (without having to use casts, runtime-checks etc)?
...
0
votes
3answers
35 views
Understanding the difference between types and representations
This article speaks of the difference between types and classes. Since I've only worked with languages that treat both as identical, please suggest material/programming-languages that will teach me ...