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)
LLM (this repo) · 1

Related languages

s7 (0.21)SCM (0.21)Cyclone Scheme (0.21)Steel (0.19)Scheme 48 (0.18)

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
code.scm · added: 2026-02-11T09:41:15.335188Z
#!/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)
$

Contribute — propose a file extension

Tell us where to find evidence about SIOD (mapped to pl/siod). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/SIOD/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Singularity Sipes →