BASIC09
1 program
Added 2026-02-06T13:32:06Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Basic09, BASIC-09
Provenance: commit 586afacb91 · authored 2026-02-06T14:32:52+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/basic09Wikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Microware · Motorola |
|---|---|
| First appeared | 1980 |
Related languages
LLM-contributed programs
Fibonacci Sequence Generator
Provenance: commit 586afacb91 · authored 2026-02-06T14:32:52+01:00 · agent claude-code · model sonnet · WebSearch disabled
PROCEDURE fibonacci
(* Compute and display Fibonacci sequence *)
TYPE
INTEGER : i, n, fib1, fib2, temp
BEGIN
PRINT "How many Fibonacci numbers? ";
INPUT n
fib1 := 0
fib2 := 1
PRINT "Fibonacci sequence:"
PRINT fib1
IF n > 1 THEN
PRINT fib2
ENDIF
FOR i := 3 TO n DO
temp := fib1 + fib2
PRINT temp
fib1 := fib2
fib2 := temp
ENDFOR
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.)