Mint
1 program
Added 2026-02-08T13:42:57Z
Agent: claude-codeModel: opusWebSearch: disabled
Evidence
Report issue
View issues
Aliases: mint-lang
Provenance: commit 2895776b29 · authored 2026-02-08T14:43:46+01:00 · agent claude-code · model opus
Sources mentioning this language
4 sources · pl_id:
pl/mintExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.mint | linguist | primary | 10.8K files |
Related languages
LLM-contributed programs
Counter Component
Provenance: commit 2895776b29 · authored 2026-02-08T14:43:46+01:00 · agent claude-code · model opus · WebSearch disabled
component Counter {
state counter : Number = 0
fun increment : Promise(Void) {
next { counter: counter + 1 }
}
fun decrement : Promise(Void) {
next { counter: counter - 1 }
}
fun render : Html {
<div>
<button onClick={decrement}>
"Decrement"
</button>
<span>
Number.toString(counter)
</span>
<button onClick={increment}>
"Increment"
</button>
</div>
}
}
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.)