Kojo
2 programs
Added 2026-02-11T10:11:21Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 0cf634328e · authored 2026-02-10T22:15:23+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/kojo-learning-environmentWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | structured · functional · object-oriented |
|---|---|
| Typing | strong |
| Designed by | Lalit Pant |
| First appeared | 2010 |
| Influenced by | Logo · Processing |
| License | GPL |
| Homepage | https://www.kogics.net/kojo |
Extensions claimed by this language
2 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 |
|---|---|---|---|
.kojo | wikipedia | proposed | 1.5K files |
.scala | wikipedia | proposed | 37.2M files |
Related languages
LLM-contributed programs
Star Pattern
Provenance: commit 0cf634328e · authored 2026-02-10T22:15:23+01:00 · agent claude-code · model sonnet · WebSearch disabled
clear()
setSpeed(fast)
setPenColor(red)
repeat(36) {
forward(100)
right(170)
}
Recursive Tree Drawing
Provenance: commit 33b64b7dd2 · authored 2026-02-11T13:26:24+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
def tree(distance: Double) {
if (distance > 4) {
setPenThickness(distance/7)
setPenColor(color(distance.toInt, Math.abs(255-distance*3).toInt, 125))
forward(distance)
right(25)
tree(distance*0.8-2)
left(45)
tree(distance-10)
right(20)
back(distance)
}
}
clear()
invisible()
setAnimationDelay(60)
penUp()
back(200)
penDown()
tree(90)
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.)