Albatross
1 program
Added 2026-02-13T09:16:27Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Alba
Provenance: commit 241c082035 · authored 2026-02-13T10:17:16+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/albatrossRelated languages
LLM-contributed programs
Factorial with Verification
Provenance: commit 241c082035 · authored 2026-02-13T10:17:16+01:00 · agent claude-code · model sonnet · WebSearch disabled
factorial (n: NATURAL): NATURAL
-> Result
ensure
n = 0 ==> Result = 1
n /= 0 ==> n * factorial (n - 1) = Result
end
=
inspect
n
case 0 then
1
case _ then
n * factorial (n - 1)
end
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.)