IPL-VI
1 program
Added 2026-02-11T11:38:21Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: IPL-6, Information Processing Language VI
Provenance: commit 3302700d27 · authored 2026-02-11T12:39:08+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 3302700d27 · authored 2026-02-11T12:39:08+01:00 · agent claude-code · model sonnet · WebSearch disabled
; IPL-VI List Reversal Program
; Reverses a list structure
START:
L0 = (A B C D E) ; Create initial list
L1 = NIL ; Initialize empty result list
LOOP:
J1 L0, DONE ; Jump if L0 is empty
L2 = H0 L0 ; Get head of L0
L0 = T0 L0 ; Get tail of L0
L1 = S2 L1, L2 ; Cons L2 onto L1
J0 LOOP ; Continue loop
DONE:
OUT L1 ; Output reversed list
HALT