Jinx
1 program
Added 2026-02-10T14:57:24.169119Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 800351e671 · authored 2026-02-10T15:58:05+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/jinxRelated languages
LLM-contributed programs
Factorial Calculator
Provenance: commit 800351e671 · authored 2026-02-10T15:58:05+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- Calculate factorial recursively
function factorial(n)
if n <= 1 then
return 1
else
return n * factorial(n - 1)
end
end
-- Test factorial function
set result to factorial(5)
write result
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.)