Porth
1 program
Added 2025-11-04T14:49:56Z
Model: x-ai/grok-4-fastTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 54b276b0d0 · authored 2025-11-04T15:49:56+01:00 · model x-ai/grok-4-fast
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Fibonacci Sequence Calculator
Provenance: commit 54b276b0d0 · authored 2025-11-04T15:49:56+01:00 · model x-ai/grok-4-fast · Temp 0.4
include lib/io.porth
: fib { n -- fib(n) }
dup 1 < if
drop 0
else
dup 1 < if
drop 1
else
tuck fib
1 - fib
+
then
then
;
main:
10 fib .
;