Ark
1 program
Added 2025-11-12T11:03:47Z
Model: x-ai/grok-4-fastTemp: 0.4
Evidence
Report issue
View issues
Aliases: ArkScript
Provenance: commit b633244337 · authored 2025-11-12T12:03:47+01:00 · model x-ai/grok-4-fast
Sources mentioning this language
3 sources · pl_id:
pl/arkRelated languages
LLM-contributed programs
Fibonacci Sequence Calculator
Provenance: commit b633244337 · authored 2025-11-12T12:03:47+01:00 · model x-ai/grok-4-fast · Temp 0.4
(def fib (n)
(if (< n 2)
n
(+ (fib (- n 1)) (fib (- n 2)))
)
)
(print (fib 10))
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.)