Developer's Toolkit

Blog archive

The Passing of Another Great

Because computer science is such a young field, it is easy to forget that it has a history. And a fundamental individual close to the beginning of that history passed away last week. John Backus, whose development of the Fortran programming language in the 1950s changed how people interacted with computers and paved the way for modern software, died Saturday in Ashland, Oregon. Fortran was the first high-level computer language; prior to its development, you wrote code in machine language or assembly. The development of Fortran earned Backus the 1977 Turing Award from the Association for Computing Machinery, one of the industry's highest accolades. The citation praised Backus' "profound, influential, and lasting contributions."

Backus also won a National Medal of Science in 1975 and got the 1993 Charles Stark Draper Prize, the top honor from the National Academy of Engineering. Among his other important contributions was a method for describing the particular grammar of computer languages. The system is known as Backus-Naur Form, or BNF, for those of us with training in formal languages.

As a sophomore at a liberal arts college in the late 1970s, my choices in learning computers were very limited – Basic and Fortran. Basic was interactive, while Fortran was batch, done on punch cards. It was not readily apparent to me at the time that programming languages had different design tradeoffs; it was only later, working with pointer-oriented languages, that I learned that languages had deliberate and specific strengths and weaknesses that made them more appropriate in given domains.

Fortran, of course, was best known as a number-crunching language. Its early binding and fixed-sized and rigid data structures meant that the compiler could build the resulting executable to take advantage of the processor it ran on, making its programs extremely fast. It was essential for scientific and engineering applications.

C, a pointer-oriented language, could never be as fast, but work on C compilers eventually made it good enough for all but the most demanding number-crunching applications. Microsoft at one point in time sold Microsoft Fortran, but it disappeared as Visual Studio became ascendant.

Even if Fortran is no longer a common language for mainstream computing, to me it epitomized the concept of TANSTAFFL, used in Heinlein's classic The Moon is a Harsh Mistress. There Ain't No Such Thing As a Free Lunch defines the tradeoffs anyone working in computing makes on a daily basis.

Posted by Peter Varhol on 03/20/2007


comments powered by Disqus

Featured

  • Compare New GitHub Copilot Free Plan for Visual Studio/VS Code to Paid Plans

    The free plan restricts the number of completions, chat requests and access to AI models, being suitable for occasional users and small projects.

  • Diving Deep into .NET MAUI

    Ever since someone figured out that fiddling bits results in source code, developers have sought one codebase for all types of apps on all platforms, with Microsoft's latest attempt to further that effort being .NET MAUI.

  • Copilot AI Boosts Abound in New VS Code v1.96

    Microsoft improved on its new "Copilot Edit" functionality in the latest release of Visual Studio Code, v1.96, its open-source based code editor that has become the most popular in the world according to many surveys.

  • AdaBoost Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the AdaBoost.R2 algorithm for regression problems (where the goal is to predict a single numeric value). The implementation follows the original source research paper closely, so you can use it as a guide for customization for specific scenarios.

  • Versioning and Documenting ASP.NET Core Services

    Building an API with ASP.NET Core is only half the job. If your API is going to live more than one release cycle, you're going to need to version it. If you have other people building clients for it, you're going to need to document it.

Subscribe on YouTube