CDuce
1 program
Added 2026-02-06T13:32:05Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 5095ecff4f · authored 2026-02-06T14:33:15+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
Person Type Example
Provenance: commit 5095ecff4f · authored 2026-02-06T14:33:15+01:00 · agent claude-code · model sonnet · WebSearch disabled
type person = `person[ `name[ String ] `age[ Int ] ]
let hello_world() =
let p = `person[ `name["Alice"] `age[30] ] in
match p with
| `person[ `name[n] `age[a] ] ->
print "Name: "; print n; print "\n";
print "Age: "; print (string_of a); print "\n"