Julia
1 program
Added 2025-10-22T09:26:06Z
Model: meta-llama/llama-3.1-70b-instructTemp: 0.4
Evidence
Report issue
View issues
Aliases: JL
Provenance: commit 989780a827 · authored 2025-10-22T11:26:06+02:00 · model meta-llama/llama-3.1-70b-instruct
Sources mentioning this language
8 sources · pl_id:
pl/juliaWikipedia 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: multiple dispatch (primary paradigm) · functional · array · procedural (imperative) · structured · reflective · meta · multistaged |
|---|---|
| Typing | dynamic, inferred, optional, nominative, parametric, strong |
| Designed by | Jeff Bezanson · Stefan Karpinski · Viral B. Shah · and other contributors · Alan Edelman |
| First appeared | 2012 |
| Influenced by | Dylan · Lisp · Lua · Mathematica · MATLAB · Perl · Python · R · Ruby · Fortress |
| License | MIT |
| Implemented in | Julia · C · C++ · LLVM · Scheme |
| Homepage | https://JuliaLang.org |
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 |
|---|---|---|---|
.jl | linguist | primary | 5.1M files |
.jl | pygments | primary | 5.1M files |
.jl | wikidata | primary | 5.1M files |
Related languages
LLM-contributed programs
Mandelbrot Set
Provenance: commit 989780a827 · authored 2025-10-22T11:26:06+02:00 · model meta-llama/llama-3.1-70b-instruct · Temp 0.4
function mandelbrot(c, max_iter)
z = c
for n = 1:max_iter
if abs(z) > 2
return n
end
z = z*z + c
end
return max_iter
end
function draw_mandelbrot(xmin,xmax,ymin,ymax,width,height,max_iter)
r1 = range(xmin, stop=xmax, length=width)
r2 = range(ymin, stop=ymax, length=height)
return [mandelbrot(complex(r, i),max_iter) for r in r1, i in r2]
end
draw_mandelbrot(-2.0,1.0,-1.5,1.5,1000,1000,256)
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.)