Chalice

1 program Added 2026-02-07T13:32:31Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit c6cf50bd10 · authored 2026-02-07T14:32:58+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

Chalk (0.33)Silice (0.31)Alice (0.27)Alice ML (0.27)Dice (0.25)

LLM-contributed programs

Cell with Permissions

Provenance: commit c6cf50bd10 · authored 2026-02-07T14:32:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.chalice · added: 2026-02-07T13:32:31Z
class Cell {
  var x: int

  method init(v: int)
    requires acc(x)
    ensures acc(x) && x == v
  {
    x := v
  }

  method set(v: int)
    requires acc(x)
    ensures acc(x) && x == v
  {
    x := v
  }

  method get() returns (v: int)
    requires acc(x)
    ensures acc(x) && v == x
  {
    v := x
  }
}

Contribute — propose a file extension

Tell us where to find evidence about Chalice (mapped to pl/chalice). 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/Chalice/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Chalcraft-Greene train track automaton Chalk →