ALGOL
Template:Short description Script error: No such module "about". Template:Use dmy dates Template:EngvarB Script error: No such module "Infobox".Template:Template otherScript error: No such module "Check for unknown parameters".
ALGOL (Template:IPAc-en; short for "Algorithmic Language")[1] 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 (ACM) in textbooks and academic sources for more than thirty years.[2]
In the sense that the syntax of most modern languages is "Algol-like",[3] it was arguably more influential than three other high-level programming languages among which it was roughly contemporary: FORTRAN, Lisp, and COBOL.[4] 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, Ada, 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 58 – originally proposed to be called IAL, for International Algebraic Language.
- ALGOL 60 – first implemented as X1 ALGOL 60 in 1961. Revised 1963.[5][6][7]
- ALGOL 68 – introduced new elements including flexible arrays, slices, parallelism, operator identification. Revised 1973.[8]
ALGOL 68 is substantially different from ALGOL 60 and was not well received,Template:According to whom so reference to "Algol" is generally understood to mean ALGOL 60 and its dialects.Script error: No such module "Unsubst".
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 (cf. ALGOL 58).[9] It specified three different syntaxes: a reference syntax, a publication syntax, and an implementation syntax, syntaxes that permitted it to use different keyword names and conventions for decimal points (commas vs periods) for different languages.[5]
ALGOL was used mostly by research computer scientists in the United States and in Europe; commercial applications were 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).[10] ALGOL 60 did however become the standard for the publication of algorithms and had a profound effect on future language development.[10]
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.[11]
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."[12]
The following people attended the meeting in Paris (from 11 to 16 January):[5]
- Friedrich Ludwig Bauer, Peter Naur, Heinz Rutishauser, Klaus Samelson, Bernard Vauquois, Adriaan van Wijngaarden, and Michael Woodger (from Europe)
- John Warner Backus, Julien Green, Charles Katz, John McCarthy, Alan Jay Perlis, and Joseph Henry Wegstein (from the US).
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."[13]
Legacy
A significant contribution of the ALGOL 58 Report was to provide standard terms for programming concepts: statement, declaration, type, label, primary, block, and others.[10]
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."[14] 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.[15]
Properties
Template:More citations needed section 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 (input/output) 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.[16] Think of passing a pointer to swap(i, A[i]) in to a function. Now that every time swap is referenced, it is reevaluated. Say i := 1 and A[i] := 2, so every time swap is referenced it will return the other combination of the values ([1,2], [2,1], [1,2] and so on). 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
Script error: No such module "Unsubst".
Code sample comparisons
ALGOL 60
(The way the bold text has to be written depends on the implementation, e.g. 'INTEGER'—quotation marks included—for integer. This is known as stropping.)
procedure Absmax(a) Size:(n, m) Result:(y) Subscripts:(i, k);
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 copied 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(a[p, q]) > y then
begin y := abs(a[p, q]);
i := p; k := q
end
end Absmax
Here is an example of how to produce a table using Elliott 803 ALGOL.[17]
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(3),££L??' B := SIN(A)' C := COS(A)' PRINT PUNCH(3),SAMELINE,ALIGNED(1,6),A,B,C' END END'
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 (modes) or operators.
proc abs max = ([,]real a, ref real y, ref int i, k)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[p, q] > y then
y := abs a[p, q];
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:
(
real a,b,c,d;
# printf – sends output to the file stand out. #
# printf($p$); – selects a new page #
printf(($pg$,"Enter d:"));
read(d);
for step from 0 while a:=step*d; a <= 2*pi do
printf($l$); # $l$ - selects a new line. #
b := sin(a);
c := cos(a);
printf(($z-d.6d$,a,b,c)) # 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.Script error: No such module "Unsubst".
ALGOL 58 (IAL)
Script error: No such module "Labelled list hatnote". ALGOL 58 had no I/O facilities.
ALGOL 60 family
Script error: No such module "Labelled list hatnote". 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. Template:Sxhl A simpler program using an inline format: Template:Sxhl An even simpler program using the Display statement. Note that its output would end up at the system console ('SPO'):
An alternative example, using Elliott Algol I/O is as follows. Elliott Algol used different characters for "open-string-quote" and "close-string-quote", represented here by Template:Color box and Template:Color box. Template:Sxhl Below is a version from Elliott 803 Algol (A104). The standard Elliott 803 used five-hole paper tape and thus only had upper case. The code lacked any quote characters so £ (UK Pound Sign) was used for open quote and ? (Question Mark) for close quote. Special sequences were placed in double quotes (e.g£. £L?? produced a new line on the teleprinter).
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 ')' and spaces by %.[18]
'BEGIN'
WRITE TEXT('('HELLO%WORLD')');
'END'
ALGOL 68
Script error: No such module "Labelled list hatnote".
ALGOL 68 code was published with reserved words typically in lowercase, but bolded or underlined.
begin printf(($gl$,"Hello, world!")) end
In the language of the "Algol 68 Report" the input/output facilities were collectively called the "Transput".
Timeline of ALGOL special characters
Template:Contains 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 \ (Back slash) character added to it in order to support ALGOL's Boolean operators /\ and \/.[19]
1962: ALCOR – This character set included the unusual "᛭" runic cross[20] character for multiplication and the "⏨" Decimal Exponent Symbol[21] for floating point notation.[22][23][24]
1964: GOST – The 1964 Soviet standard GOST 10859 allowed the encoding of 4-bit, 5-bit, 6-bit and 7-bit characters in ALGOL.[25]
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 (or golf ball) print heads inserted (such as the APL golf ball). 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 ⏨ (Decimal Exponent Symbol) for floating point notation was added to Unicode 5.2 for backward compatibility with historic Buran programme ALGOL software.[26]
ALGOL implementations
To date there have been at least 70 augmentations, extensions, derivations and sublanguages of Algol 60.[27]
| Name | Year | Author | Country | Description | Target CPU |
|---|---|---|---|---|---|
| ZMMD-implementation | 1958 | Friedrich L. Bauer, Heinz Rutishauser, Klaus Samelson, Hermann Bottenbruch | Template:Country data Germany | implementation of ALGOL 58 | Z22 (later Zuse's Z23 was delivered with an Algol 60 compiler)[28] |
| X1 ALGOL 60 | 1960 August[29] | Edsger W. Dijkstra and Jaap A. Zonneveld | Template:Country data Netherlands | First implementation of ALGOL 60[30] | Electrologica X1 |
| Elliott ALGOL | 1960s | C. A. R. Hoare | Template:Country data UK | Subject of the 1980 Turing Award Lecture[31] | Elliott 803, Elliott 503, Elliott 4100 series |
| JOVIAL | 1960 | Jules Schwartz | Template:Country data US | A DOD HOL prior to Ada | Various (see article) |
| Burroughs Algol (Several variants) |
1961 | Burroughs Corporation (with participation by Hoare, Dijkstra, and others) | Template:Country data US | Basis of the Burroughs (and now Unisys MCP based) computers | Burroughs Large Systems and their midrange also. |
| Case ALGOL | 1961 | Case Institute of Technology[32] | Template:Country data US | Simula was originally contracted as a simulation extension of the Case ALGOL | UNIVAC 1107 |
| GOGOL | 1961 | William M. McKeeman | Template:Country data US | For ODIN time-sharing system[33] | PDP-1 |
| RegneCentralen ALGOL | 1961 | Peter Naur, Jørn Jensen | Template:Country data Denmark | Implementation of full Algol 60 | DASK at Regnecentralen |
| Dartmouth ALGOL 30 | 1962 | Thomas Eugene Kurtz et al. | Template:Country data US | LGP-30 | |
| USS 90 Algol | 1962 | L. Petrone | Template:Country data Italy | ||
| ALGOL 60 | 1962 | Bernard Vauquois, Louis Bolliet[34] | Template:Country data France | Institut d'Informatique et Mathématiques Appliquées de Grenoble (IMAG) and Compagnie des Machines Bull | Bull Gamma 60 |
| Algol Translator | 1962 | G. van der Mey and W.L. van der Poel | Template:Country data Netherlands | Staatsbedrijf der Posterijen, Telegrafie en Telefonie | ZEBRA |
| Kidsgrove Algol | 1963 | F. G. Duncan | Template:Country data UK | English Electric Company KDF9 | |
| VALGOL | 1963 | Val Schorre | Template:Country data US | A test of the META II compiler compiler | |
| Whetstone | 1964 | Brian Randell and L. J. Russell | Template:Country data UK | Atomic Power Division of English Electric Company. Precursor to Ferranti Pegasus, National Physical Laboratories ACE and English Electric DEUCE implementations. | English Electric Company KDF9 |
| NU ALGOL | 1965 | Template:Country data Norway | UNIVAC | ||
| ALGEK | 1965 | Template:Country data USSR | АЛГЭК, based on ALGOL-60 and COBOL support, for economical tasks | Minsk-22 | |
| ALGOL W | 1966 | Niklaus Wirth | Template:Country data US | Proposed successor to ALGOL 60 | IBM System/360 |
| MALGOL | 1966 | publ. A. Viil, M Kotli & M. Rakhendi, | Template:Country data Estonian SSR | Minsk-22 | |
| ALGAMS | 1967 | GAMS group (ГАМС, группа автоматизации программирования для машин среднего класса), cooperation of Comecon Academies of Science | Comecon | Minsk-22, later ES EVM, BESM | |
| ALGOL/ZAM | 1967 | Template:Country data Poland | Polish ZAM computer | ||
| Simula 67 | 1967 | Ole-Johan Dahl and Kristen Nygaard | Template:Country data Norway | Algol 60 with classes | UNIVAC 1107 |
| Script error: No such module "anchor".Triplex-ALGOL Karlsruhe | 1967/1968 | Karlsruhe, Template:Country data Germany | ALGOL 60 (1963) with triplex numbers for interval arithmetic | [35] | |
| Chinese Algol | 1972 | Template:Country data China | Chinese characters, expressed via the Symbol system | ||
| DG/L | 1972 | Template:Country data US | DG Eclipse family of Computers | ||
| S-algol | 1979 | Ron Morrison | Template:Country data UK | Addition of orthogonal datatypes with intended use as a teaching language | PDP-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.
See also
References
Further reading
- Script error: No such module "citation/CS1".. On the design of the Whetstone Compiler, and one of the early published descriptions of implementing a compiler.
- Script error: No such module "citation/CS1".
- Script error: No such module "citation/CS1".
External links
- Revised Report on the Algorithmic Language Algol 60 by Peter Naur, et al.
- The European Side of the Last Phase of the Development of ALGOL 60, by Peter Naur
- A History of ALGOL from the Computer History Museum
Template:ALGOL programming Template:Authority control
- ↑ The name of this language family is sometimes given in mixed case (Algol 60 Template:Webarchive), and sometimes in all uppercase (ALGOL68 Template:Webarchive). For simplicity this article uses ALGOL.
- ↑ Collected Algorithms of the ACM Template:Webarchive Compressed archives of the algorithms. ACM.
- ↑ Script error: No such module "citation/CS1".
- ↑ "The ALGOL Programming Language" Template:Webarchive, University of Michigan-Dearborn
- ↑ a b c Script error: No such module "Citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ a b c Script error: No such module "citation/CS1".
- ↑ Script error: No such module "Citation/CS1".
- ↑ ACM Award Citation: Peter Naur Template:Webarchive, 2005
- ↑ Script error: No such module "citation/CS1".
- ↑ "Hints on Programming Language Design" Template:Webarchive, C.A.R. Hoare, December 1973. Page 27. (This statement is sometimes erroneously attributed to Edsger W. Dijkstra, also involved in implementing the first ALGOL 60 compiler.)
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1"., Section 7.5, and references therein
- ↑ "803 ALGOL" Template:Webarchive, the manual for Elliott 803 ALGOL
- ↑ Script error: No such module "citation/CS1".
- ↑ How ASCII Got Its Backslash Template:Webarchive, Bob Bemer
- ↑ iron/runic cross
- ↑ Decimal Exponent Symbol
- ↑ Script error: No such module "Citation/CS1".
- ↑ Script error: No such module "Citation/CS1".
- ↑ Script error: No such module "Citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Computer Museum History Template:Webarchive, Historical Zuse-Computer Z23, restored by the Konrad Zuse Schule in Hünfeld, for the Computer Museum History Center in Mountain View (California) US
- ↑ Script error: No such module "Citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "Citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "Citation/CS1".
- ↑ Script error: No such module "Citation/CS1".
- Pages with script errors
- Pages with broken file links
- ALGOL 60 dialect
- Algol programming language family
- Articles with example ALGOL 60 code
- Computer-related introductions in 1958
- Procedural programming languages
- Programming languages created in 1958
- Structured programming languages
- Systems programming languages