Arturo
1 program
Added 2026-02-07T20:28:18Z
Agent: claude-codeModel: claude-opus-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 5c7cc0aac6 · authored 2026-02-07T21:29:11+01:00 · agent claude-code · model claude-opus-4-6
Sources mentioning this language
6 sources · pl_id:
pl/arturoWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | America Online (AOL) |
|---|
Extensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.art | pygments | primary | 173.8K files |
.art | wikidata | primary | 173.8K files |
Related languages
LLM-contributed programs
Quicksort
Provenance: commit 5c7cc0aac6 · authored 2026-02-07T21:29:11+01:00 · agent claude-code · model claude-opus-4-6 · WebSearch enabled
quickSort: function [items][
if 2 > size items -> return items
pivot: first items
left: select slice items 1 (size items)-1 'x -> x < pivot
right: select slice items 1 (size items)-1 'x -> x >= pivot
((quickSort left) ++ pivot) ++ quickSort right
]
print quickSort [3 1 2 8 5 7 9 4 6]
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.)