ML Types Explained
From a link on the mailing list edition of comp.lang.python, this talk on strong typing (in the form of heavily annotated slides) is an explanation of the ML type system and why it really doesn’t suck. From the same thread, Felix is a new high level C++ style language with an ML style type system which looks like it could be worth experimenting with.
Sam Newman - 27th August 2003 12:29 - #
ML's typing system is awesome. It's nice to be able to just code and not worry about what type you need to declare a variable as. And the fact that it does auto-templating for you is nice. It's such a pain in C++ to have to write
function<type>when you want to use a function for many types... anyhow, ML is sweet.Andy - 27th August 2003 21:07 - #