Slint
1 program
Added 2026-02-12T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: SixtyFPS
Provenance: commit ef7c9106c9 · authored 2026-02-12T14:54:14+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/slintExtensions 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 |
|---|---|---|---|
.slint | linguist | primary | 9.8K files |
Related languages
LLM-contributed programs
Counter App
Provenance: commit ef7c9106c9 · authored 2026-02-12T14:54:14+01:00 · agent claude-code · model sonnet · WebSearch disabled
import { Button, VerticalBox } from "std-widgets.slint";
export component Demo {
in-out property <int> counter: 0;
VerticalBox {
Text {
text: "Counter: \{root.counter}";
font-size: 24px;
}
Button {
text: "Increment";
clicked => {
root.counter += 1;
}
}
Button {
text: "Decrement";
clicked => {
root.counter -= 1;
}
}
Button {
text: "Reset";
clicked => {
root.counter = 0;
}
}
}
}
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.)