LIFE
1 program
Added 2026-02-11T10:54:11.884212Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: L&O, Logic, Inheritance, Functions, and Equations
Provenance: commit e4d505688c · authored 2026-02-11T11:54:48+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/lifeRelated languages
LLM-contributed programs
Fibonacci
Provenance: commit e4d505688c · authored 2026-02-11T11:54:48+01:00 · agent claude-code · model sonnet · WebSearch disabled
% Fibonacci in LIFE
fib(0) -> 1.
fib(1) -> 1.
fib(N) -> fib(N-1) + fib(N-2) | N > 1.
% Query: ?- fib(10, X).
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.)