<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/mirah</id>
  <title type="text">The Mirah Programming Language Google Group</title>
  <subtitle type="text">
  This is the group for discussion of the Mirah programing language.
  </subtitle>
  <link href="/group/mirah/feed/atom_v1_0_msgs.xml" rel="self" title="The Mirah Programming Language feed"/>
  <updated>2013-05-03T22:53:12Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Nick Howard</name>
  <email>n...@baroquebobcat.com</email>
  </author>
  <updated>2013-05-03T22:53:12Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/77af401efd9c6231/c7a9ca51bfe7b51d?show_docid=c7a9ca51bfe7b51d</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/77af401efd9c6231/c7a9ca51bfe7b51d?show_docid=c7a9ca51bfe7b51d"/>
  <title type="text">Re: License grant</title>
  <summary type="html" xml:space="preserve">
  Thanks. &lt;br&gt; &lt;p&gt;-- &lt;br&gt; -Nick Howard &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://blog.baroquebobcat.com/&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Ralph Möritz</name>
  <email>ralmor...@gmail.com</email>
  </author>
  <updated>2013-05-03T19:03:12Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/77af401efd9c6231/2e2c07d15c673733?show_docid=2e2c07d15c673733</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/77af401efd9c6231/2e2c07d15c673733?show_docid=2e2c07d15c673733"/>
  <title type="text">License grant</title>
  <summary type="html" xml:space="preserve">
  I license my contributions to the Mirah project under the Apache License &lt;br&gt; Version 2.0. &lt;br&gt; P.S I&#39;m posting this using my Gmail address but my my primary address is &lt;br&gt; ralph.moeritz at outlook dot com &amp;amp; that&#39;s the one linked to my GitHub &lt;br&gt; profile, if that matters.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Nick Howard</name>
  <email>n...@baroquebobcat.com</email>
  </author>
  <updated>2013-04-08T14:31:45Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/6d183c07f6dae355/f55f48a158203d2a?show_docid=f55f48a158203d2a</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/6d183c07f6dae355/f55f48a158203d2a?show_docid=f55f48a158203d2a"/>
  <title type="text">Mirah is now on travis-ci</title>
  <summary type="html" xml:space="preserve">
  This weekend I put mirah&#39;s build on travis-ci. Now when you commit to &lt;br&gt; master on &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://github.com/mirah/mirah&quot;&gt;[link]&lt;/a&gt;, it will kick off a build and run &lt;br&gt; the core tests and the current backend&#39;s tests. &lt;br&gt; &lt;p&gt;I&#39;ve set it up to notify the IRC channel when the build fails, so if you &lt;br&gt; hang out in #mirah, it&#39;ll let you know if the build is broken.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Nick Howard</name>
  <email>n...@baroquebobcat.com</email>
  </author>
  <updated>2013-04-05T20:14:03Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/d9796028bc3e3b28/783613b499e250b7?show_docid=783613b499e250b7</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/d9796028bc3e3b28/783613b499e250b7?show_docid=783613b499e250b7"/>
  <title type="text">Re: Incompatible types #&lt;IntegerType int&gt; and #&lt;BooleanType boolean&gt;.</title>
  <summary type="html" xml:space="preserve">
  I think this is an issue with Mirah&#39;s error reporting. You can fix it by &lt;br&gt; changing one of your usages of value to use a different name. &lt;br&gt; &lt;p&gt; Looking at the AST inspection, it looks like you have something like this &lt;br&gt; in your code &lt;br&gt; &lt;p&gt;loop do &lt;br&gt; value = detector.readValue &amp;lt; 5 &lt;br&gt; LCD.drawString &amp;quot;#{value} &amp;quot;, 0
  </summary>
  </entry>
  <entry>
  <author>
  <name>Peter Ehrlich</name>
  <email>peter.i.ehrl...@gmail.com</email>
  </author>
  <updated>2013-04-05T17:47:28Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/d9796028bc3e3b28/eeefa3bcdbd492e6?show_docid=eeefa3bcdbd492e6</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/d9796028bc3e3b28/eeefa3bcdbd492e6?show_docid=eeefa3bcdbd492e6"/>
  <title type="text">Incompatible types #&lt;IntegerType int&gt; and #&lt;BooleanType boolean&gt;.</title>
  <summary type="html" xml:space="preserve">
  I&#39;ve got this piece of code which won&#39;t compile: &lt;br&gt; value = 123 &lt;br&gt; LCD.drawInt(123, 0, 6) &lt;br&gt; LCD.drawInt(value, 0, 7) &lt;br&gt; Fails: &lt;br&gt; /Users/peter/Downloads/leJOS_N XJ_0.9.1beta-3/lib/nxt/classes .jar &lt;br&gt; main.mirah &lt;br&gt; Parsing... &lt;br&gt; main.mirah &lt;br&gt; Inferring types... &lt;br&gt; Inference Error: &lt;br&gt; main.mirah:78: Incompatible types #&amp;lt;IntegerType int&amp;gt; and #&amp;lt;BooleanType
  </summary>
  </entry>
  <entry>
  <author>
  <name>John Woodell</name>
  <email>mando.woo...@gmail.com</email>
  </author>
  <updated>2013-03-26T04:08:57Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/f0aaad84a70f7934/846b8f58b0fb59f3?show_docid=846b8f58b0fb59f3</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/f0aaad84a70f7934/846b8f58b0fb59f3?show_docid=846b8f58b0fb59f3"/>
  <title type="text">Maven vs rubygems</title>
  <summary type="html" xml:space="preserve">
  I&#39;d like to have easy acces to maven artifacts from Mirah, but then it may be helpful to have a generic way to package java libs into gems. I&#39;d want to keep the same versioning, if possible, and provide a minimal JRuby wrapper. Can jbundler fetch libs directly from maven?
  </summary>
  </entry>
  <entry>
  <author>
  <name>Nick Howard</name>
  <email>n...@baroquebobcat.com</email>
  </author>
  <updated>2013-03-05T16:46:06Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/62dd5f1a6de2fbc1/1e78af09733c9c42?show_docid=1e78af09733c9c42</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/62dd5f1a6de2fbc1/1e78af09733c9c42?show_docid=1e78af09733c9c42"/>
  <title type="text">Re: Access the argv</title>
  <summary type="html" xml:space="preserve">
  There isn&#39;t currently an ARGV available in the implicit main for a script. &lt;br&gt; I&#39;ve been wanting to add it. I put in an issue &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://github.com/mirah/mirah/issues/212&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;p&gt;You can work around it by writing something like this, though it&#39;s not &lt;br&gt; nearly as nice. &lt;br&gt; &lt;p&gt;class MyScript &lt;br&gt; def self.main argv:string[]
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jan Stępień</name>
  <email>janekstep...@gmail.com</email>
  </author>
  <updated>2013-03-05T06:25:47Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/86d5ed105d476b8a/167d9c5d6048b933?show_docid=167d9c5d6048b933</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/86d5ed105d476b8a/167d9c5d6048b933?show_docid=167d9c5d6048b933"/>
  <title type="text">License Grant</title>
  <summary type="html" xml:space="preserve">
  I license my contributions to the Mirah project under the Apache License &lt;br&gt; Version 2.0.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Rodrigo Herefeld</name>
  <email>rodrigo.heref...@gmail.com</email>
  </author>
  <updated>2013-03-04T12:58:49Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/62dd5f1a6de2fbc1/3dbfa5133c5c95e4?show_docid=3dbfa5133c5c95e4</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/62dd5f1a6de2fbc1/3dbfa5133c5c95e4?show_docid=3dbfa5133c5c95e4"/>
  <title type="text">Access the argv</title>
  <summary type="html" xml:space="preserve">
  How do i access the ARGV variable? &lt;br&gt; &lt;p&gt;-- &lt;br&gt; Rodrigo Cesar Herefeld
  </summary>
  </entry>
  <entry>
  <author>
  <name>Brendan Ribera</name>
  <email>brendan.rib...@gmail.com</email>
  </author>
  <updated>2013-02-27T17:30:59Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/0e98f2d8ca38049f/14cc37c56b069fea?show_docid=14cc37c56b069fea</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/0e98f2d8ca38049f/14cc37c56b069fea?show_docid=14cc37c56b069fea"/>
  <title type="text">Re: for loop</title>
  <summary type="html" xml:space="preserve">
  You can also use: &lt;br&gt; &lt;p&gt;5.times do |i| &lt;br&gt; puts i &lt;br&gt; end
  </summary>
  </entry>
  <entry>
  <author>
  <name>Dave Newton</name>
  <email>davelnew...@gmail.com</email>
  </author>
  <updated>2013-02-27T14:53:33Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/0e98f2d8ca38049f/ed12774b43a9c9c1?show_docid=ed12774b43a9c9c1</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/0e98f2d8ca38049f/ed12774b43a9c9c1?show_docid=ed12774b43a9c9c1"/>
  <title type="text">Re: for loop</title>
  <summary type="html" xml:space="preserve">
  Did you try `each`? &lt;br&gt; &lt;p&gt;On Wed, Feb 27, 2013 at 9:46 AM, Rodrigo Herefeld &amp;lt; &lt;br&gt; &lt;p&gt;-- &lt;br&gt; e: davelnew...@gmail.com &lt;br&gt; m: 908-380-8699 &lt;br&gt; s: davelnewton_skype &lt;br&gt; t: @dave_newton &amp;lt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://twitter.com/dave_newton&quot;&gt;[link]&lt;/a&gt;&amp;gt; &lt;br&gt; b: Bucky Bits &amp;lt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://buckybits.blogspot.com/&quot;&gt;[link]&lt;/a&gt;&amp;gt; &lt;br&gt; g: davelnewton &amp;lt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://github.com/davelnewton&quot;&gt;[link]&lt;/a&gt;&amp;gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Rodrigo Herefeld</name>
  <email>rodrigo.heref...@gmail.com</email>
  </author>
  <updated>2013-02-27T14:46:34Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/0e98f2d8ca38049f/da1619119feb81fb?show_docid=da1619119feb81fb</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/0e98f2d8ca38049f/da1619119feb81fb?show_docid=da1619119feb81fb"/>
  <title type="text">for loop</title>
  <summary type="html" xml:space="preserve">
  How do i do a for loop in mirah? &lt;br&gt; In jruby the code: &lt;br&gt; &lt;p&gt;for i in (0..5) do &lt;br&gt; puts i &lt;br&gt; end &lt;br&gt; &lt;p&gt;works well, but in mirah its not working.... &lt;br&gt; &lt;p&gt;-- &lt;br&gt; Rodrigo Cesar Herefeld
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jan Stępień</name>
  <email>janekstep...@gmail.com</email>
  </author>
  <updated>2013-02-27T11:46:31Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/4aeee7cab3bfb244/a83e73bf0846d6d2?show_docid=a83e73bf0846d6d2</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/4aeee7cab3bfb244/a83e73bf0846d6d2?show_docid=a83e73bf0846d6d2"/>
  <title type="text">Re: [ANN] Mirah 0.1.0 Released</title>
  <summary type="html" xml:space="preserve">
  Congratulations on the release! I&#39;ve just pushed updated mirahd [0] which &lt;br&gt; should work fine with Mirah 0.1. &lt;br&gt; &lt;p&gt;Thanks and keep up the good work, &lt;br&gt; -- &lt;br&gt; Jan Stępień &lt;br&gt; &lt;p&gt;[0] &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://rubygems.org/gems/mirahd&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Arash Bizhan zadeh</name>
  <email>aras...@gmail.com</email>
  </author>
  <updated>2013-02-26T18:57:53Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/4aeee7cab3bfb244/78e16bebb6b8a2c5?show_docid=78e16bebb6b8a2c5</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/4aeee7cab3bfb244/78e16bebb6b8a2c5?show_docid=78e16bebb6b8a2c5"/>
  <title type="text">Re: [ANN] Mirah 0.1.0 Released</title>
  <summary type="html" xml:space="preserve">
  Congrats Nick.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Brendan Ribera</name>
  <email>brendan.rib...@gmail.com</email>
  </author>
  <updated>2013-02-26T18:35:38Z</updated>
  <id>http://groups.google.com/group/mirah/browse_thread/thread/4aeee7cab3bfb244/34e5c3d7aa096daa?show_docid=34e5c3d7aa096daa</id>
  <link href="http://groups.google.com/group/mirah/browse_thread/thread/4aeee7cab3bfb244/34e5c3d7aa096daa?show_docid=34e5c3d7aa096daa"/>
  <title type="text">Re: [ANN] Mirah 0.1.0 Released</title>
  <summary type="html" xml:space="preserve">
  Woohoo, congratulations!
  </summary>
  </entry>
</feed>
