Simplicity
1 program
Added 2026-02-10T18:43:38.141975Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 177701426e · authored 2026-02-10T19:44:29+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Basic Combinators
Provenance: commit 177701426e · authored 2026-02-10T19:44:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- Simple identity function in Simplicity
-- Takes a unit value and returns it
iden : 1 |- 1
iden = iden
-- Pair construction example
pair : A * B |- A * B
pair = iden
-- Unit constant
unit : A |- 1
unit = unit
-- Simple addition with witness data
-- This checks a signature witness
witness : 1 |- 2^256
witness = witness