B6700 Algol

1 program Added 2026-02-11T16:37:58Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Burroughs B6700 Algol
Provenance: commit 4391b38d51 · authored 2026-02-11T17:38:56+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

BALGOL (0.63)B5000 Algol (0.49)Burroughs Extended Algol (0.36)BACAIC (0.26)WFL (0.20)

LLM-contributed programs

Factorial Calculator

Provenance: commit 4391b38d51 · authored 2026-02-11T17:38:56+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.alg · added: 2026-02-11T16:37:58Z
BEGIN
   COMMENT Sample B6700 Algol Program - Factorial Calculation;
   INTEGER I, N, RESULT;

   PROCEDURE FACTORIAL(N);
   VALUE N;
   INTEGER N;
   BEGIN
      INTEGER I, FACT;
      FACT := 1;
      FOR I := 1 STEP 1 UNTIL N DO
         FACT := FACT * I;
      FACTORIAL := FACT
   END FACTORIAL;

   N := 5;
   RESULT := FACTORIAL(N);
   WRITE(TEXT("FACTORIAL OF "), N, TEXT(" IS "), RESULT)
END

Contribute — propose a file extension

Tell us where to find evidence about B6700 Algol (mapped to pl/b6700_algol). 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/B6700 Algol/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← B5000 Algol B9 →