ALGOL 68

1 program Added 2025-11-05T11:53:17Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: —
Provenance: commit ed7aac3d50 · authored 2025-11-05T12:53:17+01:00 · model google/gemini-2.5-pro

Sources mentioning this language

3 sources · pl_id: pl/algol-68-2
LLM (this repo) · 1WikipediaWikidata · Q2166735

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsmulti-paradigm: concurrent · imperative
Typingstatic, strong, safe, structural
Designed byA. van Wijngaarden · B. J. Mailloux · J. E. L. Peck · C. H. A. Koster · et al
First appeared1968
Influenced byALGOL 60 · ALGOL Y
Homepagehttp://algol68-lang.org

Related languages

ALGOL 68R (0.50)ALGOL 68-R (0.47)ALGOL (0.47)Algol W (0.43)ALGOL 60 (0.37)

LLM-contributed programs

Sieve of Eratosthenes

Provenance: commit ed7aac3d50 · authored 2025-11-05T12:53:17+01:00 · model google/gemini-2.5-pro · Temp 0.4
code.a68 · license: GNU FDL 1.2 · added: 2025-11-05T11:53:17Z
# Sieve of Eratosthenes - Algol 68 version #
# The original Sieve of Eratosthenes algorithm #

PROC sieve = (INT limit, REF[]BOOL primes)VOID:
BEGIN
  # Initialise the array to all TRUE #
  FOR i FROM LWB primes TO UPB primes DO primes[i] := TRUE OD;

  # Set 0 and 1 to not be prime #
  primes[0] := primes[1] := FALSE;

  # For all numbers from 2 up to the square root of the limit #
  FOR i FROM 2 TO ENTIER sqrt(limit) DO
    # If the number is prime #
    IF primes[i] THEN
      # Mark all of its multiples as not prime #
      FOR j FROM i*i BY i TO limit DO
        primes[j] := FALSE
      OD
    FI
  OD
END; # sieve #

# Main program #
BEGIN
  INT limit = 100;
  [0:limit]BOOL primes;

  sieve(limit, primes);

  print(("Primes up to ", limit, ":", newline));
  FOR i FROM LWB primes TO UPB primes DO
    IF primes[i] THEN
      print((whole(i,0), " "))
    FI
  OD;
  print(newline)
END

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about ALGOL 68 (mapped to pl/algol-68-2). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/ALGOL 68/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← ALGOL 60 ALGOL 68-R →