Strand
1 program
Added 2026-02-06T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 46219cbc10 · authored 2026-02-06T09:31:12+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/strandRelated languages
LLM-contributed programs
Fibonacci with Parallel Computation
Provenance: commit 46219cbc10 · authored 2026-02-06T09:31:12+01:00 · agent claude-code · model sonnet · WebSearch disabled
% Fibonacci calculation in Strand
fib(0, 1).
fib(1, 1).
fib(N, F) :-
N > 1,
N1 is N - 1,
N2 is N - 2,
fib(N1, F1) & fib(N2, F2),
F is F1 + F2.
% Main execution
main :- fib(10, Result), write(Result), nl.
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.)