implementing type inference

Posted by deepblue on Stack Overflow See other posts from Stack Overflow or by deepblue
Published on 2009-01-06T05:06:19Z Indexed on 2012/11/18 23:02 UTC
Read the original article Hit count: 209

well I see some interesting discussions here about static vs. dynamic typing I generally prefer static typing, due to compile type checking, better documented code,etc. However I do agree that they do clutter up the code if done the way Java does it, for example.

so Im about to start building a language of my own and type inference is one of the things that I want to implement, in a functional style language... I do understand that it is a big subject, and Im not trying to create something that has not been done before, just basic inferencing...

any pointers on what to read up that will help me with this? preferably something more pragmatic/practical as oppose to more theoretical category theory/type theory texts. If there's a implementation discussion text out here, with data structures/algorithms, that would just be lovely

much appreciated

© Stack Overflow or respective owner

Related posts about compiler

Related posts about functional-programming