IPL-I
1 program
Added 2026-02-13T13:44:19Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: IPL I, Information Processing Language I
Provenance: commit bc1a425e2a · authored 2026-02-13T14:45:31+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
List Reversal
Provenance: commit bc1a425e2a · authored 2026-02-13T14:45:31+01:00 · agent claude-code · model sonnet · WebSearch disabled
; IPL-I List Reversal Program
; This program reverses a list
START:
H1 = L0 ; Initialize H1 to input list
H2 = 0 ; Initialize H2 to empty list (accumulator)
LOOP:
Q0 = H1 ; Test if H1 is empty
J0 Q0, END ; If empty, jump to END
S1 = H1* ; Get first element of H1
H1 = H1' ; Set H1 to rest of list
H2 = S1:H2 ; Cons S1 onto H2
J0 0, LOOP ; Jump back to LOOP
END:
OUT H2 ; Output reversed list
HALT