ooc
1 program
Added 2026-02-07T14:40:28Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit d368e0a314 · authored 2026-02-07T15:40:54+01:00 · agent claude-code · model sonnet
Sources mentioning this language
6 sources · pl_id:
pl/oocExtensions 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 |
|---|---|---|---|
.ooc | linguist | primary | 36.6K files |
.ooc | pygments | primary | 36.6K files |
Related languages
Moocode (0.03)
LLM-contributed programs
Hello World and Fibonacci
Provenance: commit d368e0a314 · authored 2026-02-07T15:40:54+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Hello World in ooc
import os/Time
main: func {
"Hello, World!" println()
// Simple fibonacci function
for (i in 0..10) {
"fib(%d) = %d" printfln(i, fib(i))
}
}
fib: func (n: Int) -> Int {
if (n <= 1) return n
return fib(n - 1) + fib(n - 2)
}
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.)