ALTAC

1 program Added 2026-03-16T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Algebraic Language Translator and Compiler
Provenance: commit 391056e2ab · authored 2026-03-16T22:31:56+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/altac
LLM (this repo) · 1Pldb

Related languages

ALTRAN (0.42)CAL (0.28)BACAIC (0.27)IAL (0.26)ALGOL 58 (0.26)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 391056e2ab · authored 2026-03-16T22:31:56+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.f · added: 2026-03-16T10:00:00Z
C     FIBONACCI SEQUENCE - ALTAC PROGRAM
C     FOR UNIVAC 490 ALTAC COMPILER
      DIMENSION F(20)
      F(1) = 1
      F(2) = 1
      DO 10 I=3,20
      F(I) = F(I-1) + F(I-2)
10    CONTINUE
      DO 20 I=1,20
      PRINT 30, I, F(I)
20    CONTINUE
30    FORMAT(4H N= ,I3,10H  FIB(N) = ,I8)
      STOP
      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 ALTAC (mapped to pl/altac). 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/ALTAC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← ALT-4 Altair BASIC →