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/gosu
LLM (this repo) · 1PldbLinguistPygmentsWikipediaHyperpolyglotRosettacodeWikidata · Q5587589

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Typingstatic
Designed byGuidewire Software · open source contributors · Scott McKinney
First appeared2010
Influenced byJava · C#
LicenseApache 2.0
Homepagehttps://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.
ExtensionSourceStrengthSWH
.gslinguistprimary257.9K files
.gspygmentsprimary257.9K files
.gsppygmentssecondary1.3M files
.gstlinguistsecondary12.4K files
.gsxlinguistsecondary7.9K files
.gsxpygmentssecondary7.9K files
.varklinguistsecondary236 files
.varkpygmentssecondary236 files
.gswikipediaproposed257.9K files
.gspwikipediaproposed1.3M files
.gstwikipediaproposed12.4K files
.gsxwikipediaproposed7.9K files

Related languages

J (0.66)S (0.66)Eta (0.62)Jac (0.62)Piet (0.62)

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
code.gs · license: Apache-2.0 · added: 2025-10-22T15:16:39Z
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.
RuleExtKindPredicates (truncated)
h/linguist/.gs/1.gspredicates[{"kind": "any", "regexes": ["^uses (java|gw)\\."]}]

Contribute — propose a file extension

Tell us where to find evidence about Gosu (mapped to pl/gosu). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Gosu/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← gospel Gosu (programming language) →