Pico
1 program
Added 2026-02-06T11:59:44Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit d7d0d60bd2 · authored 2026-02-06T13:00:31+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/picoRelated languages
LLM-contributed programs
Factorial
Provenance: commit d7d0d60bd2 · authored 2026-02-06T13:00:31+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Factorial function in Pico
define factorial(n):
if n = 0 then
1
else
n * factorial(n - 1);
// Test the function
display(factorial(5));
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.)