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

Related languages

Lily (0.30)Curly (0.17)Emfrp (0.17)Jelly (0.17)Lolly (0.17)

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
code.em · added: 2026-02-25T12:00:00Z
# 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.)

Contribute — propose a file extension

Tell us where to find evidence about Emily (mapped to pl/emily). 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/Emily/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Emfrp EmiT →