Small
1 program
Added 2026-02-27T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: SMALL
Provenance: commit 4b221a3956 · authored 2026-02-27T08:44:58+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
5 sources · pl_id:
pl/smallWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | procedural · imperative · structured · object-oriented |
|---|---|
| Designed by | University of Auckland · Nevil Brownlee |
| First appeared | 1980 |
| Influenced by | ALGOL |
| Implemented in | Fortran IV · SMALL |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 4b221a3956 · authored 2026-02-27T08:44:58+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
main()
{
new a = 0, b = 1, c;
printf("Fibonacci sequence:\n");
for (new i = 0; i < 10; i++)
{
printf("%d\n", a);
c = a + b;
a = b;
b = c;
}
}
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.)