SectorLISP
1 program
Added 2026-03-10T22:41:39Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Sector LISP
Provenance: commit a40b863c73 · authored 2026-03-10T23:42:06+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
List Append
Provenance: commit a40b863c73 · authored 2026-03-10T23:42:06+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
((LAMBDA (APPEND)
(APPEND APPEND (QUOTE (A B C)) (QUOTE (D E F))))
(LAMBDA (SELF X Y)
(COND
((ATOM X) Y)
((QUOTE T) (CONS (CAR X) (SELF SELF (CDR X) Y))))))