Coco
1 program
Added 2026-02-12T11:43:28Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Coco Programming Language
Provenance: commit 4c19b8410d · authored 2026-02-12T12:44:04+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/cocoRelated languages
LLM-contributed programs
FizzBuzz
Provenance: commit 4c19b8410d · authored 2026-02-12T12:44:04+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Coco example: FizzBuzz
fizzbuzz = ->
for n from 1 to 100
| n % 15 == 0 => 'FizzBuzz'
| n % 3 == 0 => 'Fizz'
| n % 5 == 0 => 'Buzz'
| otherwise => n
console.log fizzbuzz!
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.)