3 comments
An important language in my younger years, since many Atari System 2 games (using the T-11 "PDP-on-a-chip") were written in it.
Variables were pointers and you could dereference with a dot. Another step towards writing what you mean.
Neatly removes the lhs/rhs distinction in the compiler, although in practice tracking during the translation whether evaluating e.g. "a[i]" needs to end with DEREF or not ain't that onerous.<p>But "The Design of an Optimizing Compiler" by Wulf et al. is an interesting read nonetheless; especially if you wonder how people did register allocation before Chaitin's seminal paper.
There's even a compiler for it <a href="https://github.com/sergev/bliss-compiler" rel="nofollow">https://github.com/sergev/bliss-compiler</a>