From: ······@gmail.com
Subject: Io Language?
Date: 
Message-ID: <1178841360.556376.255370@n59g2000hsh.googlegroups.com>
Anyone here tried Io language?

http://www.iolanguage.com/about/

What do you guys think of it?

From: Jon Harrop
Subject: Re: Io Language?
Date: 
Message-ID: <4643b5b3$0$8722$ed2619ec@ptn-nntp-reader02.plus.net>
······@gmail.com wrote:
> Anyone here tried Io language?
> 
> http://www.iolanguage.com/about/
> 
> What do you guys think of it?

Someone ported my ray tracer to IO, so I like it:

  http://www.mike-austin.com/io/ray.io

;-)

-- 
Dr Jon D Harrop, Flying Frog Consultancy
The F#.NET Journal
http://www.ffconsultancy.com/products/fsharp_journal/?usenet
From: Thomas Gagne
Subject: Re: Io Language?
Date: 
Message-ID: <9sednYsd2bHsG9nbnZ2dnUVZ_r7inZ2d@wideopenwest.com>
This is a multi-part message in MIME format.
--------------090506060201010608040805
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

······@gmail.com wrote:
> Anyone here tried Io language?
>
> http://www.iolanguage.com/about/
>
> What do you guys think of it?
>
>   
What great new thing does Io bring to programming languages that its
inspirations failed to do?

The faq <http://www.iolanguage.com/about/faq/> subjectively measures Io
as the simplest of five other languages, but avoids /objectively
measuring/ its simplicity.  The sample code suggests there exists at
least a few keywords, if, for, method.

I also noticed both := and = used for assignment.

After that I was unable to continue looking around.  I don't seem able
to get to the website <http://www.iolanguage.com/> any more.  Perhaps
the posting here to the newsgroups overwhelmed it?

-- 
Visit <http://blogs.instreamfinancial.com/anything.php> 
to read my rants on technology and the finance industry.


--------------090506060201010608040805
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#330099">
<a class="moz-txt-link-abbreviated" ···················@gmail.com">······@gmail.com</a> wrote:
<blockquote
 ·································@n59g2000hsh.googlegroups.com"
 type="cite">
  <pre wrap="">
Anyone here tried Io language?

<a class="moz-txt-link-freetext" href="http://www.iolanguage.com/about/">http://www.iolanguage.com/about/</a>

What do you guys think of it?

  </pre>
</blockquote>
What great new thing does Io bring to programming languages that its
inspirations failed to do?<br>
<br>
The faq <a class="moz-txt-link-rfc2396E" href="http://www.iolanguage.com/about/faq/">&lt;http://www.iolanguage.com/about/faq/&gt;</a> subjectively
measures Io as the simplest of five other languages, but avoids
/objectively measuring/ its simplicity.&nbsp; The sample code suggests there
exists at least a few keywords, if, for, method.<br>
<br>
I also noticed both := and = used for assignment.<br>
<br>
After that I was unable to continue looking around.&nbsp; I don't seem able
to get to the website <a class="moz-txt-link-rfc2396E" href="http://www.iolanguage.com/">&lt;http://www.iolanguage.com/&gt;</a> any more.&nbsp;
Perhaps the posting here to the newsgroups overwhelmed it?<br>
<br>
<pre class="moz-signature" cols="72">-- 
Visit <a class="moz-txt-link-rfc2396E" href="http://blogs.instreamfinancial.com/anything.php">&lt;http://blogs.instreamfinancial.com/anything.php&gt;</a> 
to read my rants on technology and the finance industry.
</pre>
</body>
</html>

--------------090506060201010608040805--
From: ············@gmail.com
Subject: Re: Io Language?
Date: 
Message-ID: <1179323361.531637.96870@h2g2000hsg.googlegroups.com>
On 11 Maj, 01:56, ······@gmail.com wrote:
> Anyone here tried Io language?
>
> http://www.iolanguage.com/about/
>
> What do you guys think of it?

I prefer prototype-based to class-based, but to be honest I really
don't find the syntax easy.

I.e. how do I express the difference between (what in Scheme would be
expressed as):

foo,
vs
(foo)
vs
(lambda () foo)

in io?

What's the difference between writeline "string"
and "string".writeline and so on? I guess Io could be a great
language, but I love sexps.

Last I tried, I couldn't get some of the example code to work, either.