Wollok
1 program
Added 2026-02-05T22:20:45Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 9c3d45ba84 · authored 2026-02-05T23:21:27+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/wollokExtensions 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 |
|---|---|---|---|
.wlk | linguist | primary | 57.9K files |
Related languages
LLM-contributed programs
Counter Object Example
Provenance: commit 9c3d45ba84 · authored 2026-02-05T23:21:27+01:00 · agent claude-code · model sonnet · WebSearch disabled
object counter {
var count = 0
method increment() {
count = count + 1
}
method decrement() {
count = count - 1
}
method value() {
return count
}
method reset() {
count = 0
}
}
program myProgram {
counter.increment()
counter.increment()
counter.increment()
console.println("Counter value: " + counter.value())
counter.decrement()
console.println("After decrement: " + counter.value())
counter.reset()
console.println("After reset: " + counter.value())
}
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.)