Potion
1 program
Added 2026-02-06T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a9c1722f61 · authored 2026-02-06T10:03:59+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/potionRelated languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit a9c1722f61 · authored 2026-02-06T10:03:59+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Fibonacci sequence in Potion
fib = (n):
if (n <= 1):
n
else:
fib(n - 1) + fib(n - 2)
.
# Print first 10 Fibonacci numbers
1 to 10 do (i):
fib(i) string print
"\n" print
.
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.)