Symta
1 program
Added 2026-02-28T14:42:36Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit c508bdaeae · authored 2026-02-28T15:43:00+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
Factorial and Quicksort
Provenance: commit c508bdaeae · authored 2026-02-28T15:43:00+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
greet Name = say "Hello, [Name]!"
factorial N = if N >< 0 then 1 else N*factorial{N-1}
qsort@r$[] H,@T = @T.keep{?<H}^r,H,@T.skip{?<H}^r
greet "World"
say "Factorial of 10: [factorial 10]"
Nums = [5 2 8 1 9 3 7 4 6]
say "Sorted: [qsort Nums]"