Developing a Statically Typed Programming Language (2017)
blog.mgechev.com
Developing a Statically Typed Programming Language (2017)
1–10 of 21 posts
Re: Developing a Statically Typed Programming Language (2017)
#2Re: Developing a Statically Typed Programming Language (2017)
#3My end goal is to use it as one phase of IR for a functional language compiler.
Re: Developing a Statically Typed Programming Language (2017)
#4Re: Developing a Statically Typed Programming Language (2017)
#5Pierce's Types and Programming Languages is a phenomenal textbook. I'm almost done with my implementation of System F-omega (polymorphic lambda calculus with higher kinded types and type operators), featuring a full handwritten lexer/parser with helpful diagnostics. My end goal is to use it as one phase of IR for a functional language compiler.
[1]: https://www.amazon.com/Practical-Foundations-Programming-Lan...
Re: Developing a Statically Typed Programming Language (2017)
#6While I cannot find the exact quote from Martin Odersky[0], I do believe he once said something along the line of, "it takes about ten years to make a complete typed language."
If anyone also recalls this and has a link to the quote, I would much appreciate the pointer to it.
Re: Developing a Statically Typed Programming Language (2017)
#7Re: Developing a Statically Typed Programming Language (2017)
#8I started reading but stopped when I saw "succ n" and "prev n". Unary numbers are so academic and disconnected from reality that I lose interest in any paper that uses them. Lambda calculus makes me yawn too. Guess I'll be making a programming language on my own to see how far I get without reading TAPL or any CS papers :-)
Re: Developing a Statically Typed Programming Language (2017)
#9So is there a technical reason why education and implementations always intertwine it with a larger client language, rather than treating it as a complete, self-contained entity in its own right? Or is that lack of decomposition just oversight?
Re: Developing a Statically Typed Programming Language (2017)
#10Curious: from what I can see, a type system is really just an embedded declarative DSL for doing set algebra. So is there a technical reason why education and implementations always intertwine it with a larger client language, rather than treating it as a complete, self-contained entity in its own right? Or is that lack of decomposition just oversight?