Raven
1 program
Added 2026-02-21T13:48:58Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit d08b327c41 · authored 2026-02-21T14:50:58+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
FizzBuzz
Provenance: commit d08b327c41 · authored 2026-02-21T14:50:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
1 do 100 times
dup 15 % 0 = if
'FizzBuzz' print
else dup 3 % 0 = if
'Fizz' print
else dup 5 % 0 = if
'Buzz' print
else
dup str print
end end end
1 +
done
drop