Hello World in ALGOL 68

Hello World in ALGOL 68 Featured Image

Welcome back to another installment in the Hello World in Every Language series. Today, we’re tackling Hello World in ALGOL 68, a language provided by one of my contributors, Trever ShickOpens in a new tab..

Table of Contents

ALGOL 68 Background

According to WikipediaOpens in a new tab., ALGOL 68—also known as Algorithmic Language 68—is a successor to the ALGOL 60 language. As the name suggests, ALGOL 68 first appeared in 1968 as an imperative programming language.

That said, ALGOL 68 has a much wider scope than ALGOL 60. For instance, ALGOL 68 includes user-declared types, expression-based syntax, concurrency, and even slicing.

Of course, I think the most interesting language feature is the overwhelming list of reserved words which includes 60 different symbols. Most of these symbols I couldn’t even guess their purpose. For example, what do you think esac does? How about ouse? James Jones offers a great explanation:

ALGOL Keywords Explanation

In general though, I find that most of the symbols are pretty typical. Many of which provide either control flow or iteration. Meanwhile, others provide typing. So, overall the language seems pretty tame. Feel free to check out the Wikipedia page for the full syntax and features list.

Hello World in ALGOL 68

Without further ado, let’s implement Hello World in ALGOL 68:

printf(($gl$, "Hello, World!"))

Now, I believe we can actually shorten this implementation to look identical to the Python implementation. But, that wouldn’t be too interesting. Instead, we opted to use a printf solution to show off a couple of features.

If you’re unfamiliar with printf, it’s typically a version of the print function which allows for string formatting. Unfortunately, that’s about where the similarities end. In ALGOL 68, the syntax for formatting text is about as bizarre as I’ve ever seen. Luckily, we have a simple example: $gl$.

In this example, everything between the dollar signs is considered a format string. In this case, we have two characters: g and l.

Since we’re formatting strings, one of those tokens will be replaced by our “Hello, World!” string. In this case, it’s g. As for l, that’s actually the newline token—something we haven’t paid a lot of attention to in this series. When put together, “Hello, World!” will print to the console.

Another interesting bit about this program is the fact that we have double parentheses that almost look redundant. But make no mistake, they’re important:

1     printf($gl$, "Hello, World!")
      1                            
a68g: error: 1: incorrect number of arguments for PROC ([] "SIMPLOUT") VOID (detected in particular-program).

To be honest, I don’t understand the error. My best guess is printf requires an array of arguments. Whereas, the varargs solution I’m proposing issues the format string and “Hello, World!” as separate arguments. Fortunately, James Jones has a great explanation for this as well:

ALGOL Varargs Explanation

How to Run the Solution

Perhaps the easiest way to run the solution is to use an online ALGOL 68 editorOpens in a new tab.. If we copy the solution above into the editor, we can hit execute to run it.

Alternatively, we have the option to install an ALGOL 68 interpreter. Apparently, there is a limited ALGOL 68 Genie interpreterOpens in a new tab. which should get the job done. After all, it’s the same interpreter the online solution uses. Feel free to leverage the documentationOpens in a new tab..

Sample Programs in Every Language

Once again, thanks for sticking around and a special thanks to Trever ShickOpens in a new tab. for giving up some of their time to help with the series.. As usual, I’ll continue my trend of focusing on the work of others for a little while. When I get some free time, I’ll catch up on the various additions I’ve made myself.

Oh, don’t forget to share this article! Every share helps get this material in front of someone who might enjoy it. You don’t want to deny them of that joy, do you?!

Until next time!

Sample Programs in Every Language (44 Articles)—Series Navigation

For 100 Days of Code, I’ve decided to implement a few sample programs in as many languages as possible. Each implementation details a brief history of the language and a description of the code.

The plan for the series is to explore the major general-purpose language like Java, Python, C, C++, and C#. From there, we’ll take a look at some sample programs in web development languages like Ruby, PHP, and JavaScript. As we continue, we’ll cover proprietary languages like Swift and Objective-C. Eventually, we’ll start to tackle less popular languages like Rust, x86, and Verilog. Finally, we’ll play around with some of the esoteric languages like Brainf*ck and LOLCODE.

Who knows? Maybe the Sample Programs in Every Language series will become so popular it’ll never end. To help this series grow, consider sharing it on social media with your friends. Or, if you have a language you want to see, drop your suggestion in the comments.

Jeremy Grifski

Jeremy grew up in a small town where he enjoyed playing soccer and video games, practicing taekwondo, and trading Pokémon cards. Once out of the nest, he pursued a Bachelors in Computer Engineering with a minor in Game Design. After college, he spent about two years writing software for a major engineering company. Then, he earned a master's in Computer Science and Engineering. Today, he pursues a PhD in Engineering Education in order to ultimately land a teaching gig. In his spare time, Jeremy enjoys spending time with his wife, playing Overwatch and Phantasy Star Online 2, practicing trombone, watching Penguins hockey, and traveling the world.

Recent Posts