<div dir="ltr"><div><div><div>Hey! Thanks for the story! Yeah, here I&#39;m complaining about unstylish code over 15 years, you&#39;ve got a completely different problem! Very interesting.<br><br></div>In a way, it fits one of my categories. I&#39;m sure there was a motivation for writing an Algol 68 compiler, a motivation that just did not stand up to time. Much like my ersatz Canvas drawing system (I think I even called it Canvas), it&#39;s fun and challenging and engaging to actually write the code, but it&#39;s not going to be a component of a modern system.<br>

<br></div>Your comment on a simpler sublanguage is interesting. Over dinner, thinking more on this subject, it struck me that the code that I have written over the years that has stood up better over time has been &quot;the simplest possible, but no simpler&quot;. Fancy tricks have a tendency to get invalidated in compiler updates. <br>

<br>I also thought about the types of languages I&#39;m likely to write in. I did almost exclusively Java and C# during the time I was employed by a boss. There are some cultural pressures that seem to make these particular languages volatile over time. Like, if you don&#39;t have a new version of C# every year, it&#39;s an indication that the language is dead or something. Whereas C over the years is not hugely different from when it started. Thinking beyond my short experience, it&#39;s obvious that a developer culture that values upheaval in the language every few years is going to encourage the sort of staleness that I mentioned in my Priority Queue story.<br>

<br></div><div>I still have to do a lot of .NET stuff today for some of my clients, so I have to keep the latest versions of Visual Studio installed on a Windows partition. Going through my code, I was struck by how poorly VS2012 &quot;played with&quot; projects built in <a href="http://VS.NET">VS.NET</a> 2003. It technically works, yes, but it first insists that I upgrade the project files and occasionally misses some of the dependencies. Yet I&#39;ve never had a problem with running GCC against a pile of code, no matter how old it is (though again, not *that* old).<br>

</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Jul 10, 2013 at 8:26 PM, Hendrik Boom <span dir="ltr">&lt;<a href="mailto:hendrik@topoi.pooq.com" target="_blank">hendrik@topoi.pooq.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">How can I resist this request to talk about ancient code?  Even if it<br>
seems off-topic?<br>
<br>
My own long-lived examples are a type-theoretical program verifier,<br>
and an Algol 68 compiler.<br>
<br>
In 1972 I started an Algol 68 conpiler, worked on it for a few years at<br>
the University of Alberta, decided to abandon the project when it went<br>
over two and a half years (I had planned ono two) and my PDF expired,<br>
went on to work at the Mathematical Centre in Amsterdam , where<br>
against my better judgement I was persuaded to resue work on it.  The<br>
facilities there were much worse than the ones I had had in Alberta.<br>
<br>
When that time came to a close I had a compier that handles about half<br>
of a very demanding test suite.<br>
<br>
But that meant it was probably about 90% complete, but you really<br>
needed closer to 99% to make the thing useful.<br>
<br>
I backed it up on magnetic tape, left one copy in a friend&#39;s sock<br>
drawer and took teh other with me.<br>
<br>
Over the years the one I had got copied a few times, because<br>
reel-to-reel 9-track tape drives were getting scarce.<br>
<br>
Unfortunately, one time that copy was not done correctly, although it<br>
appeared to have been done correctly.<br>
<br>
Then a few years ago I found that someone on the other side of the<br>
world had written an Algol W compiler (the language in which I had<br>
written my compiler), and I tried to use it to resurrect my Algol 68<br>
compiler.  When I discovered the bit rot I felt sick.<br>
<br>
But my friend in Amsterdm had contacts within IBM, and someone there<br>
took it on as a personal project.  It turned out he was working on<br>
long-term data archiving, and he thought it was just *great* that he<br>
gos a 30-year-old magnetic tape to try to recover data from.  For all I<br>
know that tape might have been mentioned in some archiving conference<br>
proceedings.<br>
<br>
Anyway, I got the enntire compiler and a bunch of other data sent to me<br>
in 8-bit EBCDIC code and proceeded to decode it.<br>
<br>
I ended up with the source code to the compiler.  It was really fun to<br>
be looking through it again.<br>
<br>
Most of hte deficiencies I find looking at it are caused by<br>
  (1) It wasn&#39;t finished<br>
  (2) the limitations of Algol W.  Algol W was a pretty good tool for the<br>
time, with garbage collection and data structures, but its limitations<br>
were severe.  No decent modern modules and separate compilation<br>
mechanisms (although procedures could be separately compiled if they<br>
didnt need any global variables) and limita on the size of procedures,<br>
on the number of blocks in a compilation, and on the number of<br>
different record types that could be used in a complete program (16 of<br>
them).  There limitations rather warped the program from its  original<br>
design.<br>
  I&#39;d love to do the whole thing over, except that it might take a few<br>
more years, and I don&#39;t think anyone would be interested in the<br>
resultt.<br>
<br>
  Nevertheless, I go back to work on it every now and then in<br>
one-or-two-month spurts of energy.  Doingg this is kind of like playing<br>
a video game of extreme complexity.  Each new test case passed is line<br>
beating a boss.<br>
<br>
A lot of code in the code generator got tossed or commented out,<br>
because that class of machine just isn&#39;t around any more.  But I do<br>
keep the old commented-out code around until I&#39;m ready to ocmmit to the<br>
new.<br>
<br>
If anyone is interested in looking at the code, it&#39;s available from<br>
the monotone repository at <a href="http://mtn-host.prjek.net/" target="_blank">http://mtn-host.prjek.net/</a>.  The algol W<br>
compiler in that repository has bugs; it&#39;s *not* the version I&#39;m<br>
using, and I&#39;m currently wondering how it&#39;s related to the one I *am*<br>
using.<br>
<br>
Every now and then I wake up in the middle of the night having<br>
figured out once again how I should have approached the whole<br>
project.<br>
<br>
They vary a lot in detail, but the common threads are:<br>
<br>
(1) I should have started with a simplified, significantly unoptimizing<br>
code generator, then wrote test cases for it.<br>
<br>
(2) I should have also started implementing a sublanguage -- a<br>
sublanguage that contained only the features I really needed for<br>
writing the compiler.<br>
<br>
Actually, it wouldn&#39;t really have been a sublanguage -- it would have<br>
had a subset of the semantics, but drastically simplified syntax, and<br>
almost no implicit type conversions.  Kind of a compromise betwen a<br>
programming language and a test generator for the code generator.<br>
<br>
(3) write the real compiler in the sublanguage, extending the<br>
sublanguage whenever implementing a feature was faster than coding<br>
around its absence.<br>
<br>
The history of the verifier is a tale for another day.<br>
<br>
-- hendrik<br>
<br>
____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
</blockquote></div><br></div>