Wolfram
1 program
Added 2026-02-27T12:32:41Z
Agent: claude-codeModel: claude-opus-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: Wolfram Language, Mathematica
Provenance: commit 66ba1ee674 · authored 2026-02-27T13:33:07+01:00 · agent claude-code · model claude-opus-4-6
Sources mentioning this language
6 sources · pl_id:
pl/wolframWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | multi-paradigm: term-rewriting · functional · procedural · array |
|---|---|
| Typing | dynamic, strong |
| Designed by | Wolfram Research · Stephen Wolfram |
| First appeared | 1988 |
| Influenced by | APL · C · C++ · FORTRAN · Lisp · Pascal · Prolog · Schoonschip · Simula · Smalltalk · SMP |
| License | Proprietary |
| Homepage | https://www.wolfram.com/language/ |
Extensions claimed by this language
4 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 |
|---|---|---|---|
.nb | pygments | primary | 388.2K files |
.cdf | pygments | secondary | 77.5K files |
.ma | pygments | secondary | 159.7K files |
.nbp | pygments | secondary | 671 files |
Related languages
LLM-contributed programs
Sieve of Eratosthenes
Provenance: commit 66ba1ee674 · authored 2026-02-27T13:33:07+01:00 · agent claude-code · model claude-opus-4-6 · WebSearch enabled
sieve[n_] := Module[{s = Table[True, {n}]},
s[[1]] = False;
Do[If[s[[i]], Do[s[[j]] = False, {j, i^2, n, i}]], {i, 2, Sqrt[n]}];
Flatten[Position[s, True]]
]
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.)