BACAIC

1 program Added 2026-02-12T13:23:44Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Burroughs Algebraic Compiler
Provenance: commit 6e7f553cc6 · authored 2026-02-12T14:24:18+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.34)ALTAC (0.27)CBASIC (0.26)B6700 Algol (0.26)B5000 Algol (0.23)

LLM-contributed programs

Quadratic Equation Solver

Provenance: commit 6e7f553cc6 · authored 2026-02-12T14:24:18+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.bac · added: 2026-02-12T13:23:44Z
PROGRAM QUADRATIC
BEGIN
   READ A, B, C
   DISC = B**2 - 4*A*C
   IF DISC < 0 THEN
      PRINT "NO REAL ROOTS"
   ELSE
      ROOT1 = (-B + SQRT(DISC)) / (2*A)
      ROOT2 = (-B - SQRT(DISC)) / (2*A)
      PRINT ROOT1, ROOT2
   END IF
END

Contribute — propose a file extension

Tell us where to find evidence about BACAIC (mapped to pl/bacaic). 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/BACAIC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← babylonian-numerals Bace →