Conniver
1 program
Added 2026-02-07T15:09:52Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: CONNIVER
Provenance: commit 5546da1c78 · authored 2026-02-07T16:10:56+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/conniverRelated languages
LLM-contributed programs
List Append Function
Provenance: commit 5546da1c78 · authored 2026-02-07T16:10:56+01:00 · agent claude-code · model sonnet · WebSearch disabled
; Conniver pattern matching example
; Append two lists
(DEFINE (APPEND L1 L2)
(COND ((NULL L1) L2)
(T (CONS (CAR L1)
(APPEND (CDR L1) L2)))))
; Test
(APPEND '(A B C) '(D E F))
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.)