Hoc
1 program
Added 2026-03-16T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: hoc, High Order Calculator
Provenance: commit ff45e96c8f · authored 2026-03-16T22:42:02+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
3 sources · pl_id:
pl/hocWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| First appeared | 1984 |
|---|---|
| License | Plan 9: MIT License |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit ff45e96c8f · authored 2026-03-16T22:42:02+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
func fib(n) {
if (n <= 1) {
return n
}
return fib(n-1) + fib(n-2)
}
for (i = 0; i <= 10; i = i+1) {
print fib(i)
}
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.)