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)
LLM (this repo) · 1

Related languages

IPL-I (0.73)IPL-V (0.73)IPL (0.71)IPL-II (0.70)IPL-IV (0.65)

LLM-contributed programs

List Reversal

Provenance: commit 3302700d27 · authored 2026-02-11T12:39:08+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.ipl · added: 2026-02-11T11:38:21Z
; 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

Contribute — propose a file extension

Tell us where to find evidence about IPL-VI (mapped to pl/ipl_vi). 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/IPL-VI/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← IPL-V iptables-rope →