Inform, the programming language built for writing interactive fiction (i.e. text adventure games), is now open source.
The compiler and toolchain may also be the largest literate programming codebase to date!
https://intfiction.org/t/inform-7-v10-1-0-is-now-open-source/55674
Related Posts
An ad hoc, informally-specified, bug-ridden, slow implementation of half of a text adventure game -- or as I like to call it, a compiler.
Blogging about my programming language project: choosing the basic syntax!
https://www.garden-lang.org/blog/syntax.html
I'm adding a += operator to my programming language, because writing `x = x + 1` is tedious.
This opens the tricky design question of which operators should support this. Is += and -= sufficient, or do you expect things like >>= and **= to be available?