Article 23QFJ Excessive explanation, part one

Excessive explanation, part one

by
ericlippert
from Fabulous adventures in coding on (#23QFJ)

Well that was a long break! When I was studying for my Facebook interviews I realized that I was going to have no time to write in my blog if I got hired, so I wrote several dozen articles, batched them all up, and figured I would have plenty of time to write more by the time May rolled around. And then I did not! I have been crazy busy learning OCaml, learning Hack, and learning my way around Facebook systems. It's been a huge amount of fun.

I would like to finish this series on designing and implementing a Z-machine in OCaml eventually, but I want to take a break from that for a bit and talk about another OCaml-related topic.

I frequently hear from readers and coworkers who don't have a formal computer science theory background that they would love to learn more about programming languages, type systems, and so on, by reading papers. But that the academic papers are written in such a dense jargon that they bog down after the first couple of pages and can't make further progress. That's unfortunate. I thought what I might do is pick a short, seminal paper and go through it in excruciating detail over many episodes.

In my series on monads I gave particular emphasis to understanding monads via concepts familiar to professional C# programmers. I'm going to do the same in this series.

So without further ado"

Principal type-schemes for functional programsLuis Damas " and Robin Milner" The work of this author is supported by the Portuguese InstitutoNacional de Investigacao CientificaFirst published in POPL '82: Proceedings of the 9th ACM SIGPLAN-SIGACTsymposium on Principles of programming languages, ACM, pp. 207-212Permission to copy without fee all or part of this material is grantedprovided that the copies are not made or distributed for directcommercial advantage, the ACM copyright notice and the title of itspublication and date appear, and notice is given that copying is bypermission of the Association for Computing Machinery. To copyotherwise, or to republish, requires a fee and/or specific permission.(C) 1982 ACM 0-89791-065-6/82/001/0207 $00.75

This is Damas and Milner's seminal paper on how to do type inference in ML, the language that OCaml is based on.

We'll more clearly define "type-scheme" later on, but briefly, by "type-scheme" we basically we mean what a C# programmer would mean by "method signature". The goal here is to deduce the type signature of a method from its body. Of course, C# requires that you explicitly state the type of a method, and requires that you convert a lambda to a delegate of the appropriate type. In ML, these types are deduced, not manifest in the program text.

By "functional programs" we mean programs written in a functional style. Functional style emphasizes two things: immutability and treating functions as data. As we'll see, the tiny little version of ML that this paper considers could be thought of as the "core" of a great many more complex functional languages.

Next time: The introduction!


4498 b.gif?host=ericlippert.com&blog=67759120
External Content
Source RSS or Atom Feed
Feed Location http://ericlippert.com/feed
Feed Title Fabulous adventures in coding
Feed Link https://ericlippert.com/
Reply 0 comments