Nuprl

1 program Added 2026-02-08T14:54:11Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: NuPRL
Provenance: commit 43f0c8cb88 · authored 2026-02-08T15:55:12+01:00 · agent claude-code · model sonnet

Sources mentioning this language

2 sources · pl_id: pl/nuprl
LLM (this repo) · 1Pldb

Related languages

RedPRL (0.23)NekoML (0.18)ngn/apl (0.18)Curl (0.17)Nesl (0.17)

LLM-contributed programs

Commutativity of Addition

Provenance: commit 43f0c8cb88 · authored 2026-02-08T15:55:12+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.nup · added: 2026-02-08T14:54:11Z
Theorem plus_comm: ∀ n m : ℕ, n + m = m + n

Proof:
  intros n m.
  induction n as [| n' IH].
  - (* Base case: n = 0 *)
    simpl.
    rewrite plus_0_r.
    reflexivity.
  - (* Inductive case: n = S n' *)
    simpl.
    rewrite IH.
    rewrite plus_n_Sm.
    reflexivity.
Qed.

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 Nuprl (mapped to pl/nuprl). 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/Nuprl/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Nunjucks Nushell →