Rell

1 program Added 2026-02-12T10:12:18Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Relational Language
Provenance: commit 787abccb08 · authored 2026-02-12T11:12:45+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

PRQL (0.40)Rez (0.39)ALFL (0.37)IAL (0.33)Rev (0.32)

LLM-contributed programs

User and Item Management System

Provenance: commit 787abccb08 · authored 2026-02-12T11:12:45+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.rell · added: 2026-02-12T10:12:18Z
entity user {
    key name;
    mutable points: integer = 0;
}

entity item {
    name;
    key id: integer;
    owner: user;
}

operation create_user(name) {
    create user(name);
}

operation add_item(user_name: text, item_name: text, item_id: integer) {
    val u = user @ { .name == user_name };
    create item(item_name, item_id, u);
    u.points += 10;
}

query get_user_items(user_name: text) {
    return item @* { .owner.name == user_name } ( $.name, $.id );
}

query get_top_users(limit: integer) {
    return user @* {} ( @sort_desc .points, .name ) limit limit;
}

Contribute — propose a file extension

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