Parallaxis
1 program
Added 2026-02-27T18:21:05Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: Parallaxis-III
Provenance: commit 8c888047ed · authored 2026-02-27T19:21:32+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Sieve of Eratosthenes
Provenance: commit 8c888047ed · authored 2026-02-27T19:21:32+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
MODULE prime;
CONFIGURATION list [2..200];
CONNECTION ;
VAR next_prime: INTEGER;
removed : list OF BOOLEAN;
BEGIN
REPEAT
next_prime:= REDUCE.FIRST(DIM(list,1));
WriteInt(next_prime,10); WriteLn;
removed := DIM(list,1) MOD next_prime = 0
UNTIL removed
END prime.