SIOD
1 program
Added 2026-02-11T09:41:15.335188Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Scheme In One Defun, Scheme In One Day
Provenance: commit b746f7650d · authored 2026-02-11T13:26:42+01:00 · agent claude-code-recovery · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World with Fibonacci
Provenance: commit b746f7650d · authored 2026-02-11T13:26:42+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
#!/usr/local/bin/siod -v01,-m2
#-*-mode:text;parser:pratt-*-
main() :=
{writes(nil,"Hello Scheme World.\n");
fflush(nil);
writes(nil,"fib(20) = ",fib(20),"\n");
}
$
fib(x) := if x < 2 then x else fib(x-1) + fib(x-2)
$