Pinecone
1 program
Added 2026-02-27T07:37:50Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit ec2e586758 · authored 2026-02-27T08:38:16+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/pineconeRelated languages
LLM-contributed programs
FizzBuzz
Provenance: commit ec2e586758 · authored 2026-02-27T08:38:16+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# FizzBuzz
# call the function defined below
fizzBuzz: 1, 20
# define the FizzBuzz function
fizzBuzz :: {start: Int, end: Int}: (
# loop i from start to end
i: in.start | i <= in.end | i: i+1 @ (
# use conditionals to print the right thing
i % 3 = 0 && i % 5 = 0 ?
print: "FizzBuzz"
|
i % 3 = 0 ?
print: "Fizz"
|
i % 5 = 0 ?
print: "Buzz"
|
print: 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.)