ALGOL


ALGOL is a family of imperative computer programming languages originally developed in 1958. ALGOL heavily influenced many other languages and was the standard method for algorithm description used by the Association for Computing Machinery in textbooks and academic sources until object-oriented languages came around, for more than thirty years.
In the sense that the syntax of most modern languages is "Algol-like", it was arguably the most influential of the four high-level programming languages among which it was roughly contemporary: FORTRAN, Lisp, and COBOL. It was designed to avoid some of the perceived problems with FORTRAN and eventually gave rise to many other programming languages, including PL/I, Simula, BCPL, B, Pascal, and C.
ALGOL introduced code blocks and the begin...end pairs for delimiting them. It was also the first language implementing nested function definitions with lexical scope. Moreover, it was the first programming language which gave detailed attention to formal language definition and through the Algol 60 Report introduced Backus–Naur form, a principal formal grammar notation for language design.
There were three major specifications, named after the years they were first published:
ALGOL 68 is substantially different from ALGOL 60 and was not well received, so that in general "Algol" means ALGOL 60 and dialects thereof.

Important implementations

The International Algebraic Language, renamed ALGOL 58, was highly influential and generally considered the ancestor of most of the modern programming languages. Further, ALGOL object code was a simple, compact, and stack-based instruction set architecture commonly used in teaching compiler construction and other high order languages; of which Algol is generally considered the first.

History

ALGOL was developed jointly by a committee of European and American computer scientists in a meeting in 1958 at the Swiss Federal Institute of Technology in Zurich. It specified three different syntaxes: a reference syntax, a publication syntax, and an implementation syntax. The different syntaxes permitted it to use different keyword names and conventions for decimal points for different languages.
ALGOL was used mostly by research computer scientists in the United States and in Europe. Its use in commercial applications was hindered by the absence of standard input/output facilities in its description and the lack of interest in the language by large computer vendors other than Burroughs Corporation. ALGOL 60 did however become the standard for the publication of algorithms and had a profound effect on future language development.
and COBOL programming language dynasty
John Backus developed the Backus normal form method of describing programming languages specifically for ALGOL 58. It was revised and expanded by Peter Naur for ALGOL 60, and at Donald Knuth's suggestion renamed Backus–Naur form.
Peter Naur: "As editor of the ALGOL Bulletin I was drawn into the international discussions of the language and was selected to be member of the European language design group in November 1959. In this capacity I was the editor of the ALGOL 60 report, produced as the result of the ALGOL 60 meeting in Paris in January 1960."
The following people attended the meeting in Paris :
Alan Perlis gave a vivid description of the meeting: "The meetings were exhausting, interminable, and exhilarating. One became aggravated when one's good ideas were discarded along with the bad ones of others. Nevertheless, diligence persisted during the entire period. The chemistry of the 13 was excellent."
ALGOL 60 inspired many languages that followed it. Tony Hoare remarked: "Here is a language so far ahead of its time that it was not only an improvement on its predecessors but also on nearly all its successors." The Scheme programming language, a variant of Lisp that adopted the block structure and lexical scope of ALGOL, also adopted the wording "Revised Report on the Algorithmic Language Scheme" for its standards documents in homage to ALGOL.

Algol and programming language research

As Peter Landin noted, the language Algol was the first language to combine seamlessly imperative effects with the lambda calculus. Perhaps the most elegant formulation of the language is due to John C. Reynolds, and it best exhibits its syntactic and semantic purity. Reynolds's idealized Algol also made a convincing methodological argument regarding the suitability of local effects in the context of call-by-name languages, to be contrasted with the global effects used by call-by-value languages such as ML. The conceptual integrity of the language made it one of the main objects of semantic research, along with Programming Computable Functions and ML.

IAL implementations timeline

To date there have been at least 70 augmentations, extensions, derivations and sublanguages of Algol 60.
NameYearAuthorCountryDescriptionTarget CPU
ZMMD-implementation1958Friedrich L. Bauer, Heinz Rutishauser, Klaus Samelson, Hermann BottenbruchGermanyimplementation of ALGOL 58Z22
X1 ALGOL 60August 1960Edsger W. Dijkstra and :nl:Jaap Zonneveld|Jaap A. ZonneveldNetherlandsFirst implementation of ALGOL 60Electrologica X1
Elliott ALGOL1960sC. A. R. HoareUKSubject of the 1980 Turing lectureElliott 803, Elliott 503, Elliott 4100 series
JOVIAL1960Jules SchwartzUSAA DOD HOL prior to AdaVarious
Burroughs Algol
1961Burroughs Corporation USABasis of the Burroughs computersBurroughs large systems and their midrange also.
Case ALGOL1961Case Institute of TechnologyUSASimula was originally contracted as a simulation extension of the Case ALGOLUNIVAC 1107
GOGOL1961William M. McKeemanUSAFor ODIN time-sharing systemPDP-1
RegneCentralen ALGOL1961Peter Naur, Jørn JensenDenmarkImplementation of full Algol 60DASK at Regnecentralen
Dartmouth ALGOL 301962Thomas Eugene Kurtz et al.USALGP-30
USS 90 Algol1962L. PetroneItaly-
Algol Translator1962G. van der Mey and W.L. van der PoelNetherlandsStaatsbedrijf der Posterijen, Telegrafie en TelefonieZEBRA
Kidsgrove Algol1963F. G. DuncanUKEnglish Electric Company KDF9
VALGOL1963Val SchorreUSAA test of the META II compiler compiler-
Whetstone1964Brian Randell and L. J. RussellUKAtomic Power Division of English Electric Company. Precursor to Ferranti Pegasus, National Physical Laboratories ACE and English Electric DEUCE implementations.English Electric Company KDF9
NU ALGOL1965NorwayUNIVAC
ALGEK1965USSRАЛГЭК, based on ALGOL-60 and COBOL support, for economical tasksMinsk-22
ALGOL W1966Niklaus WirthUSAProposed successor to ALGOL 60IBM System/360
MALGOL1966publ. A. Viil, M Kotli & M. Rakhendi,Estonian SSRMinsk-22
ALGAMS1967GAMS group, cooperation of Comecon Academies of ScienceComeconMinsk-22, later ES EVM, BESM
ALGOL/ZAM1967PolandPolish ZAM computer
Simula 671967Ole-Johan Dahl and Kristen NygaardNorwayAlgol 60 with classesUNIVAC 1107
1972ChinaChinese characters, expressed via the Symbol system-
DG/L1972USADG Eclipse family of Computers
S-algol1979Ron MorrisonUKAddition of orthogonal datatypes with intended use as a teaching languagePDP-11 with a subsequent implementation on the Java VM

The Burroughs dialects included special Bootstrapping dialects such as ESPOL and NEWP. The latter is still used for Unisys MCP system software.

Properties

ALGOL 60 as officially defined had no I/O facilities; implementations defined their own in ways that were rarely compatible with each other. In contrast, ALGOL 68 offered an extensive library of transput facilities.
ALGOL 60 allowed for two evaluation strategies for parameter passing: the common call-by-value, and call-by-name. Call-by-name has certain effects in contrast to call-by-reference. For example, without specifying the parameters as value or reference, it is impossible to develop a procedure that will swap the values of two parameters if the actual parameters that are passed in are an integer variable and an array that is indexed by that same integer variable. Think of passing a pointer to swap in to a function. Now that every time swap is referenced, it is reevaluated. Say i := 1 and A := 2, so every time swap is referenced it will return the other combination of the values. A similar situation occurs with a random function passed as actual argument.
Call-by-name is known by many compiler designers for the interesting "thunks" that are used to implement it. Donald Knuth devised the "man or boy test" to separate compilers that correctly implemented "recursion and non-local references." This test contains an example of call-by-name.
ALGOL 68 was defined using a two-level grammar formalism invented by Adriaan van Wijngaarden and which bears his name. Van Wijngaarden grammars use a context-free grammar to generate an infinite set of productions that will recognize a particular ALGOL 68 program; notably, they are able to express the kind of requirements that in many other programming language standards are labelled "semantics" and have to be expressed in ambiguity-prone natural language prose, and then implemented in compilers as ad hoc code attached to the formal language parser.

Examples and portability issues

Code sample comparisons

ALGOL 60

procedure Absmax Size: Result: Subscripts:;
value n, m; array a; integer n, m, i, k; real y;
comment The absolute greatest element of the matrix a, of size n by m
is transferred to y, and the subscripts of this element to i and k;
begin
integer p, q;
y := 0; i := k := 1;
for p := 1 step 1 until n do
for q := 1 step 1 until m do
if abs > y then
begin y := abs;
i := p; k := q
end
end Absmax
Here is an example of how to produce a table using Elliott 803 ALGOL.
FLOATING POINT ALGOL TEST'
BEGIN REAL A,B,C,D'

READ D'

FOR A:= 0.0 STEP D UNTIL 6.3 DO
BEGIN
PRINT PUNCH,££L??'
B := SIN'
C := COS'
PRINT PUNCH,SAMELINE,ALIGNED,A,B,C'
END'
END'
PUNCH sends output to the teleprinter rather than the tape punch.
SAMELINE suppresses the carriage return + line feed normally printed between arguments.
ALIGNED controls the format of the output with 1 digit before and 6 after the decimal point.

ALGOL 68

The following code samples are ALGOL 68 versions of the above ALGOL 60 code samples.
ALGOL 68 implementations used ALGOL 60's approaches to stropping. In ALGOL 68's case tokens with the bold typeface are reserved words, types or operators.
proc abs max = real:
comment The absolute greatest element of the matrix a, of size ⌈a by 2⌈a
is transferred to y, and the subscripts of this element to i and k; comment
begin
real y := 0; i := ⌊a; k := 2⌊a;
for p from ⌊a to ⌈a do
for q from 2⌊a to 2⌈a do
if abs a > y then
y := abs a;
i := p; k := q
fi
od
od;
y
end # abs max #
Note: lower and upper bounds of an array, and array slicing, are directly available to the programmer.
floating point algol68 test:
; – selects a new page #
printf);
read;

for step from 0 while a:=step*d; a <= 2*pi do
printf; #
$l$ - selects a new line''. #
b := sin;
c := cos;
printf) # formats output with 1 digit before and 6 after the decimal point. #
od
)

Timeline: Hello world

The variations and lack of portability of the programs from one implementation to another is easily demonstrated by the classic hello world program.

ALGOL 58 (IAL)

ALGOL 58 had no I/O facilities.

ALGOL 60 family

Since ALGOL 60 had no I/O facilities, there is no portable hello world program in ALGOL.
The next three examples are in Burroughs Extended Algol. The first two direct output at the interactive terminal they are run on. The first uses a character array, similar to C. The language allows the array identifier to be used as a pointer to the array, and hence in a REPLACE statement.
BEGIN
FILE F;
EBCDIC ARRAY E;
REPLACE E BY "HELLO WORLD!";
WRITE;
END.
A simpler program using an inline format:
BEGIN
FILE F;
WRITE;
END.
An even simpler program using the Display statement. Note that its output would end up at the system console :
BEGIN DISPLAY END.
An alternative example, using Elliott Algol I/O is as follows. Elliott Algol used different characters for "open-string-quote" and "close-string-quote":
program HiFolks;
begin
print 'Hello world';
end;
Here is a version for the Elliott 803 Algol The standard Elliott 803 used 5 hole paper tape and thus only had upper case. The code lacked any quote characters so £ was used for open quote and ? for close quote. Special sequences were placed in double quotes.
HIFOLKS'
BEGIN
PRINT £HELLO WORLD£L??'
END'
The ICT 1900 series Algol I/O version allowed input from paper tape or punched card. Paper tape 'full' mode allowed lower case. Output was to a line printer. The open and close quote characters were represented using '' and spaces by %.
'BEGIN'
WRITE TEXT;
'END'

ALGOL 68

ALGOL 68 code was published with reserved words typically in lowercase, but bolded or underlined.
begin
printf)
end
In the language of the "Algol 68 Report" the input/output facilities were collectively called the "Transput".

Timeline of ALGOL special characters

The ALGOLs were conceived at a time when character sets were diverse and evolving rapidly; also, the ALGOLs were defined so that only uppercase letters were required.
1960: IFIP – The Algol 60 language and report included several mathematical symbols which are available on modern computers and operating systems, but, unfortunately, were unsupported on most computing systems at the time. For instance: ×, ÷, ≤, ≥, ≠, ¬, ∨, ∧, ⊂, ≡, ␣ and ⏨.
1961 September: ASCII – The ASCII character set, then in an early stage of development, had the \ character added to it in order to support ALGOL's boolean operators /\ and \/.
1962: ALCOR – This character set included the unusual "᛭" runic cross character for multiplication and the "⏨" Decimal Exponent Symbol for floating point notation.
1964: GOST – The 1964 Soviet standard GOST 10859 allowed the encoding of 4-bit, 5-bit, 6-bit and 7-bit characters in ALGOL.
1968: The "Algol 68 Report" – used extant ALGOL characters, and further adopted →, ↓, ↑, □, ⌊, ⌈, ⎩, ⎧, ○, ⊥, and ¢ characters which can be found on the IBM 2741 keyboard with typeball print heads inserted. These became available in the mid-1960s while ALGOL 68 was being drafted. The report was translated into Russian, German, French, and Bulgarian, and allowed programming in languages with larger character sets, e.g., Cyrillic alphabet of the Soviet BESM-4. All ALGOL's characters are also part of the Unicode standard and most of them are available in several popular fonts.
2009 October: Unicode – The for floating point notation was added to Unicode 5.2 for backward compatibility with historic Buran programme ALGOL software.