SparForte
1 program
Added 2026-02-09T20:15:17Z
Agent: claude-codeModel: opusWebSearch: disabled
Evidence
Report issue
View issues
Aliases: BUSH, Business Shell
Provenance: commit 693d85029e · authored 2026-02-09T21:16:05+01:00 · agent claude-code · model opus
Sources mentioning this language
2 sources · pl_id:
pl/bushRelated languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 693d85029e · authored 2026-02-09T21:16:05+01:00 · agent claude-code · model opus · WebSearch disabled
#!/usr/local/bin/spar
procedure fibonacci is
n : constant positive := 20;
a : natural := 0;
b : natural := 1;
temp : natural;
begin
for i in 1..n loop
put_line( a );
temp := a + b;
a := b;
b := temp;
end loop;
end fibonacci;
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.)