Nimrod
1 program
Added 2026-02-13T15:51:49.018273Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Nim
Provenance: commit 5af4b69949 · authored 2026-02-13T16:52:53+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/nimrodWikipedia 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: compiled · concurrent · procedural · imperative · functional · object-oriented · meta |
|---|---|
| Typing | static, strong, inferred, structural |
| Designed by | Nim Lang Team · Andreas Rumpf |
| First appeared | 2008 |
| Influenced by | Ada · Modula-3 · Lisp · C++ · Object Pascal · Python · Oberon · Rust · ParaSail |
| License | MIT License |
| Implemented in | Pascal (2005–2008) Nim (2008–present · self-hosted) |
| Homepage | http://nim-lang.org |
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 |
|---|---|---|---|
.nim | pygments | primary | 779.9K files |
.nimrod | pygments | secondary | 104 files |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 5af4b69949 · authored 2026-02-13T16:52:53+01:00 · agent claude-code · model sonnet · WebSearch disabled
proc fibonacci(n: int): int =
if n < 2:
return n
else:
return fibonacci(n - 1) + fibonacci(n - 2)
for i in 0..10:
echo "fibonacci(", i, ") = ", fibonacci(i)
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.)