Cell

1 program Added 2026-02-28T10:58:58Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: —
Provenance: commit 89cdc8216c · authored 2026-02-28T11:59:26+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/cell
LLM (this repo) · 1PldbEsolang

Related languages

Cello (0.44)Cecil (0.30)CHILL (0.30)Orwell (0.27)Pyxell (0.27)

LLM-contributed programs

Online Forum Schema

Provenance: commit 89cdc8216c · authored 2026-02-28T11:59:26+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.cell · added: 2026-02-28T10:58:58Z
type UserId  = user_id(Int);
type GroupId = group_id(Int);

schema OnlineForum {
  next_id : Int = 0;
  user(UserId)
    username       : String [unique],
    signup_date    : Date,
    first_name     : String,
    last_name      : String,
    date_of_birth? : Date;
  chat_group(GroupId)
    name  : String,
    admin : UserId;
  admin(_, id) -> user(id);
  member(UserId, GroupId)
    joined_on : Date,
    karma     : Int;
  member(u, g) -> user(u), chat_group(g);
  friends(UserId | UserId)
    since : Time;
  friends(u1, u2) -> user(u1), user(u2);
}

using OnlineForum {
  String full_name(UserId u) = first_name(u) & " " & last_name(u);
  [UserId] users_who_signed_up_on(Date d) = [u : u <- signup_date(?, d)];
}

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 Cell (mapped to pl/cell). 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/Cell/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← celip Cell BE Assembly →