Duby
1 program
Added 2026-02-16T17:39:30Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Mirah
Provenance: commit 3923b84150 · authored 2026-02-16T18:40:20+01:00 · agent claude-code · model sonnet
Sources mentioning this language
8 sources · pl_id:
pl/mirahWikipedia 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: functional · imperative · object-oriented · reflective |
|---|---|
| Typing | duck, dynamic, strong |
| Designed by | Yukihiro Matsumoto · et al |
| First appeared | 1995 |
| Influenced by | Ada · BASIC · C++ · CLU · Dylan · Eiffel · Lisp · Lua · Perl · Python · Smalltalk |
| License | Ruby |
| Implemented in | C |
| Homepage | https://www.ruby-lang.org/en/ |
Extensions claimed by this language
12 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 |
|---|---|---|---|
.druby | linguist | primary | 2 files |
.rb | pygments | primary | 128.2M files |
.duby | linguist | secondary | 298 files |
.duby | pygments | secondary | 298 files |
.gemfile | pygments | secondary | 66.1K files |
.gemspec | pygments | secondary | 2.0M files |
.mirah | linguist | secondary | 5.8K files |
.rake | pygments | secondary | 826.4K files |
.rakefile | pygments | secondary | 254 files |
.rbw | pygments | secondary | 2.7K files |
.rbx | pygments | secondary | 30.5K files |
.vagrantfile | pygments | secondary | 1.1K files |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 3923b84150 · authored 2026-02-16T18:40:20+01:00 · agent claude-code · model sonnet · WebSearch disabled
class Fibonacci
def self.fib(n:int):int
if n <= 1
return n
end
return fib(n - 1) + fib(n - 2)
end
def self.main(args:String[]):void
puts "Fibonacci sequence:"
i = 0
while i < 10
puts "F(#{i}) = #{fib(i)}"
i += 1
end
end
end
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.)