Manticore
1 program
Added 2026-02-07T18:40:12.667986Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit f6b7a5aa0e · authored 2026-02-07T19:41:03+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/manticoreRelated languages
LLM-contributed programs
Parallel Fibonacci
Provenance: commit f6b7a5aa0e · authored 2026-02-07T19:41:03+01:00 · agent claude-code · model sonnet · WebSearch disabled
fun pfib (n : int) =
if n < 2 then n
else let
val (x, y) = (| pfib(n-1), pfib(n-2) |)
in
x + y
end
val result = pfib 10
val () = print(Int.toString result ^ "\n")
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.)