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/isetl
LLM (this repo) · 1PldbWikipediaWikidata · Q3155242

Related languages

IDL (0.55)Interactive C (0.32)FLIP (0.32)IHaskell (0.31)IDC (0.31)

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
code.isetl · added: 2026-02-06T14:14:25Z
-- 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.)

Contribute — propose a file extension

Tell us where to find evidence about ISETL (mapped to pl/isetl). 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/ISETL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← iscript ISETLW →