Dyalog
1 program
Added 2026-02-10T12:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Dyalog APL
Provenance: commit 88459b0a8d · authored 2026-02-10T19:57:41+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
Conway's Game of Life
Provenance: commit 88459b0a8d · authored 2026-02-10T19:57:41+01:00 · agent claude-code · model sonnet · WebSearch disabled
⍝ Conway's Game of Life
⍝ Simple implementation in Dyalog APL
life←{
⍝ Count living neighbors using stencil
n←{+⌿,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵}
⍝ Apply rules: born if 3 neighbors, survive if 2 or 3
{(3=⍵)∨⍵∧2=⍵}n ⍵
}
⍝ Example: glider pattern
glider←3 3⍴0 1 0 0 0 1 1 1 1