Emily
1 program
Added 2026-02-25T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 7d676845ec · authored 2026-02-25T18:42:25+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/emilyRelated languages
LLM-contributed programs
Cellular Automaton Rule 135
Provenance: commit 7d676845ec · authored 2026-02-25T18:42:25+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
# Sample program from intro.md
# NOT PART OF REGRESSION TESTS
width = 80
foreach ^upto ^perform = {
counter = 0
while ^(counter < upto) ^( perform counter; counter = counter + 1; )
}
inherit ^class = [ parent = class ]
line = [ # Object for one line of printout
createFrom ^old = {
foreach width ^at { # Rule 135
final = width - 1
here = old at
before = old ( at == 0 ? final : at - 1 )
after = old ( at == final ? 0 : at + 1 )
this.append: ( here && before && after ) \
|| !( here || before || after )
}
}
print ^ = {
this.each ^cell { print: cell ? "*" : " " }
println "" # Next line
}
]
repeatWith ^old = { # Repeatedly print a line, then generate a new one
do: old.print
new = inherit line
new.createFrom old
repeatWith new
}
starting = inherit line # Create a starting line full of garbage
next = 1
foreach width ^at (
starting.append: at != next
if (at == next) ^( next = next * 2 )
)
repeatWith starting # Begin
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.)