Bedwyr

1 program Added 2026-02-27T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit ddae1d6e57 · authored 2026-02-27T19:07:39+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

Bean (0.17)Beta (0.17)Beads (0.15)Berry (0.15)Beryl (0.15)

LLM-contributed programs

Peano Arithmetic

Provenance: commit ddae1d6e57 · authored 2026-02-27T19:07:39+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.def · added: 2026-02-27T10:00:00Z
% Peano arithmetic in Bedwyr
% Defines natural number addition and multiplication

kind nat type.

type z   : nat.
type s   : nat -> nat.

type plus  : nat -> nat -> nat -> prop.
type times : nat -> nat -> nat -> prop.

plus z N N.
plus (s M) N (s P) := plus M N P.

times z _ z.
times (s M) N P := times M N Q, plus Q N P.

Contribute — propose a file extension

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