Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I learn Mirah? [closed]

Tags:

mirah

With Mirah, I am refering to the JVM language: http://www.mirah.org/

The only useful documentation available online are the examples. I understand it says it has a ruby-like syntax, but I do believe there are Mirah-specific quirks to it.

How would I go on identifying the various syntax quirks? Will learning Ruby itself suffice in learning Mirah?

Thanks!

like image 320
nubela Avatar asked Apr 18 '11 16:04

nubela


1 Answers

If you know Java pretty well, you can start off by thinking of Mirah as Java with some funny syntax and type inference. You don't need to know Ruby's semantics to use Mirah, because Mirah uses Java's semantics for the most part.

There aren't really any tutorials about learning the language yet because the language is still changing and evolving.

Once you start trying to look at Mirah's internals, you'll want to beef up on your Ruby though, because most of Mirah is currently implemented in Ruby, JRuby in particular. If you have any questions about JRuby, the #jruby IRC channel has helpful people in it-- #mirah works too, but there are fewer regulars at the moment.

like image 138
BaroqueBobcat Avatar answered Nov 17 '22 08:11

BaroqueBobcat