JEAN
1 program
Added 2026-02-11T10:30:00Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 08b1de73d4 · authored 2026-02-11T13:26:21+01:00 · agent claude-code-recovery · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/jeanRelated languages
LLM-contributed programs
List Reversal
Provenance: commit 08b1de73d4 · authored 2026-02-11T13:26:21+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
FUNCTION REVERSE(L);
BEGIN
IF NULL(L) THEN RETURN(NIL);
RETURN(APPEND(REVERSE(CDR(L)), CONS(CAR(L), NIL)));
END;
FUNCTION APPEND(L1, L2);
BEGIN
IF NULL(L1) THEN RETURN(L2);
RETURN(CONS(CAR(L1), APPEND(CDR(L1), L2)));
END;
RESULT := REVERSE(QUOTE(A B C D));
PRINT(RESULT);
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.)