ICI
1 program
Added 2026-02-06T12:09:11.033090Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a7cae6e534 · authored 2026-02-06T13:09:33+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/iciRelated languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit a7cae6e534 · authored 2026-02-06T13:09:33+01:00 · agent claude-code · model sonnet · WebSearch disabled
/*
* Fibonacci sequence in ICI
*/
auto fib(n)
{
if (n <= 1)
return n;
return fib(n - 1) + fib(n - 2);
}
auto i;
for (i = 0; i < 15; ++i)
printf("%d ", fib(i));
printf("\n");
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.)