Conversation

If I wrote a blog / tutorial series about developing a language (with type inference, generics, etc.) + compiler from scratch in Rust, would people read it?
58
561
I would really love to see something like this! Dependent typing is a field I've not yet explored much, so any approachable literature / tutorials / blog posts about implementing them I'm sure would be most welcome.
1
2
The big thing I was missing in my understanding reading TaPL is that the rules can be assembled into a tree, where the rules are nodes that slot together. The execution of the type checker follows that tree as it checks your program, with information flowing up and down the tree.
1
2
Show replies