Maple
1 program
Added 2025-10-30T10:44:55Z
Model: x-ai/grok-4-fastTemp: 0.4
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a3b6c845a6 · authored 2025-10-30T11:44:55+01:00 · model x-ai/grok-4-fast
Sources mentioning this language
6 sources · pl_id:
pl/mapleWikipedia 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 | Waterloo Maple (Maplesoft) |
|---|---|
| First appeared | 1982 |
| License | Proprietary commercial software |
| Homepage | https://www.maplesoft.com/products/maple/ |
Extensions claimed by this language
3 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 |
|---|---|---|---|
.mpl | pygments | primary | 104.2K files |
.mi | pygments | secondary | 14.9K files |
.mm | pygments | secondary | 1.9M files |
Related languages
LLM-contributed programs
Quicksort implementation
Provenance: commit a3b6c845a6 · authored 2025-10-30T11:44:55+01:00 · model x-ai/grok-4-fast · Temp 0.4
QuickSort := proc( L :: list )
local n, pivot, less, equal, greater, i ;
n := nops( L ) ;
if n < 2 then
L
else
pivot := L[ n ] ;
less := select( t -> t < pivot, L ) ;
equal := select( t -> t = pivot, L ) ;
greater := select( t -> t > pivot, L ) ;
[ op( QuickSort( less ) ), op( equal ), op( QuickSort( greater ) ) ] ;
end if ;
end proc ;
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.)