ISETL
1 program
Added 2026-02-06T14:14:25Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Interactive SET Language
Provenance: commit 346671dffb · authored 2026-02-06T15:15:15+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/isetlRelated languages
LLM-contributed programs
Fibonacci and Set Operations
Provenance: commit 346671dffb · authored 2026-02-06T15:15:15+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- Fibonacci sequence generator in ISETL
fib := func(n);
if n <= 1 then
return n;
else
return fib(n-1) + fib(n-2);
end if;
end func;
-- Generate first 10 Fibonacci numbers
fibs := {fib(i) : i in [0..9]};
print(fibs);
-- Set operations example
A := {1, 2, 3, 4, 5};
B := {4, 5, 6, 7, 8};
print("Union:", A union B);
print("Intersection:", A inter B);
print("Difference:", A - B);
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.)