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/bush
LLM (this repo) · 1Pldb

Related languages

Zsh (0.20)csh (0.19)Business BASIC (0.19)Bourne Shell (0.18)Scsh (0.17)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit 693d85029e · authored 2026-02-09T21:16:05+01:00 · agent claude-code · model opus · WebSearch disabled
code.sp · license: GPL-2.0 · added: 2026-02-09T20:15:17Z
#!/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.)

Contribute — propose a file extension

Tell us where to find evidence about SparForte (mapped to pl/bush). 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/SparForte/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Spare Change SPARK →