Profan²
1 program
Added 2026-03-10T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Profan, ProFAN
Provenance: commit a532d9b2d4 · authored 2026-03-10T14:44:47+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Fibonacci sequence
Provenance: commit a532d9b2d4 · authored 2026-03-10T14:44:47+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
Declare Proc Fib(n%),0%
Proc Fib(n%)
If n% < 2 Then Return n%
Return Fib(n%-1)+Fib(n%-2)
EndProc
For n%=0 To 10
Print Fib(n%)," "
Next n%
Print ""