Mirah is an open source programming language created in 2009 by Charles Oliver Nutter.
| #398on PLDB | 17Years Old | 68Repos |
git clone https://github.com/mirah/mirahMirah (formerly Duby) is a programming language based on Ruby language syntax, local type inference, hybrid static–dynamic type system, and a pluggable compiler toolchain. Mirah was created by Charles Oliver Nutter to be "a 'Ruby-like' language, probably a subset of Ruby syntax, that [could] compile to solid, fast, idiomatic JVM bytecode." The word mirah refers to the gemstone ruby in the Javanese language, a play on the concept of Ruby in Java.. Read more on Wikipedia...
def foo(a:String, b:int)def fib(a:int)
if a < 2
a
else
fib(a - 1) + fib(a - 2)
end
end| Feature | Supported | Example | Token |
|---|---|---|---|
| Comments | ✓ | ||
| Semantic Indentation | X |