Skip to content

Tracing where features and concepts come from in programming languages

License

Notifications You must be signed in to change notification settings

masak/programming-language-idea-history

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 

Repository files navigation

programming-language-idea-history

Tracing where features and concepts come from in programming languages.

Or perhaps I should say "dislike?" No, I think "hate" will do nicely. All languages suck. — Steve Yegge

List of languages to start with

  • Today's Big Three: Java, JavaScript, Python
  • GC languages: C#, Kotlin, D, Go, Nim, Zig, Scala, Clojure, Swift, Dart, Haxe
  • GC-less languages: C, C++, Rust
  • FP languages: Haskell, Racket, SML, OCaml, F#, Elm, PureScript
  • Scripting languages: Lua, Julia, R, Ruby, Matlab, VBA, Groovy, PowerShell, Erlang, Perl, PHP, TypeScript
  • Declarative languages: CSS, HTML, SQL
  • Forgotten languages: Ada, Awk, HyperTalk, Modula-3, Self, Smalltalk, Oberon, Algol 60, Algol 68, Cobol, Fortress, BASIC, Simula, Oz, Prolog, Dylan, NewtonScript, Delphi, PL/I, APL, Rexx

Wikipedia's list of languages

Wikipedia has a footer template with programming languages, and I thought it was a nice representative list:

Ada · ALGOL · APL · Assembly · BASIC · C · C++ · C# · Classic Visual Basic · COBOL · Erlang · Forth · Fortran · Go · Haskell · Java · JavaScript · Kotlin · Lisp · Lua · MATLAB · ML · Object Pascal · Pascal · Perl · PHP · Prolog · Python · R · Ruby · Rust · SQL · Scratch · Shell · Simula · Smalltalk · Swift · Visual Basic

Maybe the only thing I would contest is "Object Pascal" instead of Delphi, but that one is admittedly borderline.

Link to a talk about else

This talk is great, and lays out the history of if-else. HN discussion.

Link to C language history

From the Internet Archive.

In which I learn that the reason B and C use break (as opposed to a separate keyword like endcase) to escape out of switch statements, is that B was based on an older version of BCPL, before BCPL got the endcase keyword.

Interestingly, Perl 6/Raku re-introduced the difference with its succeed keyword.

The separate compilation in ML was inspired by Modula

See https://github.com/masak/interesting-papers/issues/450 for details.

Nim was inspired by Modula/Oberon

Its type and module systems were, according to this HN thread.

Timeline from Wikipedia

This timeline is a great resource and starting point for choosing influential languages.

Where does for come from?

According to Wikipedia,

Superplan introduced the keyword "for" resp. the German für with its for loop

Superplan was developed by Heinz Rutishauser, one of the earliest people deserving the title "computer scientist".

Among other contributions, he introduced several basic syntactic features to computer programming, notably the reserved word (keyword) for for a for loop, first as the German für in Superplan, next via its English translation for in ALGOL 58.

Internal and external iterators

Two blog posts (one, two) by Bob Nystrom give a pretty good overview.

  • External iterators tend to look like Iterable/Iterator interfaces, and a for loop syntax
  • Internal iterators tend to look like an each or forEach method

Dijkstra's famous argument for half-open intervals

Why numbering should start at zero argues both for counting from zero, and for using half-open intervals (like Python does).

A history chart

The paper Programming Languages: History and Future has an awesome history chart on page 6. It's hard to do this chart justice. All the languages that survived to the present day are there, and a great many others besides.

Short-circuiting boolean operators

  • Dijkstra famously warned against short-circuiting logical operators, but in practice they are widespread in modern languages.
  • A number of languages have both the non-short-circuiting form and the short-circuiting form.
  • In more than one BASIC, AND and OR do not short-circuit.

Type punning and the "truthy" convention

We should discuss this. A number of mainstream languages follow this convention:

  • Perl 5/Raku
  • Python
  • JavaScript

Many others don't. It influences how you write conditions in the language, and spreads into other nearby idioms.

"Compiler", not "translator"

In this slide deck, there's a quote from Grace Hopper's "A Programmer's Glossary" (1954-05-01), which explains how we ended up with the term "compiler" crowding out the (previously more common) term "translator".

We didn't end up with = for equality

Well, in some languages, we did: the BASIC I grew up with does that (but overloads it with assignment depending on context). OCaml uses = for equality testing. Pascal famously uses = for equality and := for assignment.

Billion dollar mistake

It's a bit of a cliché already to call null pointers (or "null references") a billion dollar mistake. But maybe there's a core of truth and wisdom in there that can be focused on.

What could have been the alternative, if we imagine history playing out in a different way? Pattern-matching and typed destructuring, for sure. That is, good match statements, and also things like monadic combinators. The problem with that is that this required (and still requires) a kind of type-based "regimentation" that people are still hesitant to commit to. When people talk about ADTs, they mostly mean sum types (since product types are already common); and the sum types imply enforcing coverage (unless you're Erlang). Maybe history took the path it did because enforcing coverage didn't look realistic, or didn't seem to have a good cost/benefit ratio or good ergonomics.

Why semicolons?

As statement terminators/separators? In many languages.

This post speculates a bit. Also this post.

About

Tracing where features and concepts come from in programming languages

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published