Gosu
1 program
Added 2025-10-22T15:16:39Z
Model: anthropic/claude-3.5-sonnetTemp: 0.4
Evidence
Report issue
View issues
Aliases: Gosu Programming Language
Provenance: commit 3e3d9bfa5e · authored 2025-10-22T17:16:39+02:00 · model anthropic/claude-3.5-sonnet
Sources mentioning this language
8 sources · pl_id:
pl/gosuWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Typing | static |
|---|---|
| Designed by | Guidewire Software · open source contributors · Scott McKinney |
| First appeared | 2010 |
| Influenced by | Java · C# |
| License | Apache 2.0 |
| Homepage | https://gosu-lang.github.io/ |
Extensions claimed by this language
12 claims. 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 |
|---|---|---|---|
.gs | linguist | primary | 257.9K files |
.gs | pygments | primary | 257.9K files |
.gsp | pygments | secondary | 1.3M files |
.gst | linguist | secondary | 12.4K files |
.gsx | linguist | secondary | 7.9K files |
.gsx | pygments | secondary | 7.9K files |
.vark | linguist | secondary | 236 files |
.vark | pygments | secondary | 236 files |
.gs | wikipedia | proposed | 257.9K files |
.gsp | wikipedia | proposed | 1.3M files |
.gst | wikipedia | proposed | 12.4K files |
.gsx | wikipedia | proposed | 7.9K files |
Related languages
LLM-contributed programs
Conway's Game of Life in Gosu
Provenance: commit 3e3d9bfa5e · authored 2025-10-22T17:16:39+02:00 · model anthropic/claude-3.5-sonnet · Temp 0.4
package life
class Cell {
var _alive : boolean
var _nextState : boolean
var _x : int
var _y : int
construct(x : int, y : int) {
_x = x
_y = y
}
property get X() : int {
return _x
}
property get Y() : int {
return _y
}
property get Alive() : boolean {
return _alive
}
property set Alive(b : boolean) {
_alive = b
}
function calculateNextState(neighbors : List<Cell>) {
var livingNeighbors = neighbors.countWhere(\n -> n.Alive)
if(Alive) {
_nextState = livingNeighbors == 2 || livingNeighbors == 3
} else {
_nextState = livingNeighbors == 3
}
}
function transition() {
_alive = _nextState
}
}
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.)
Disambiguation rules
Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.gs/1 | .gs | predicates | [{"kind": "any", "regexes": ["^uses (java|gw)\\."]}] |