# Run this code snippet. My expectation is that it will immediately # exit; instead it loops forever. Moreover, if terminated with SIGINT, # it does...
I've a question for Steve Dekorte... Is possible, in your opinion, a .NET implementation of the Io language built on top of the MS DLR? regard, arkasha...
Hi. Perhaps, I found a bug. "call sender" returns weird object. Is this a bug? [Reproduction method] Foo := Object clone Foo name := "This is foo." Foo priv :=...
It was around 2005 when I started to use C# 2.0; the Ruby trend was coming up and I started to learn it! In fact I started to learn how a language can help or...
A friend of mine and I are writing the client and server for a massively multiplayer online game. We'd like to use Io for our scripting. But we'd rather not...
Hi, I am attempting to build the "current" Io source (git pull) on MacOS 10.5.6 PPC, but encountering a problem. The Coro.c source says that "APPLE coros are...
I have accidentally typed http://iolanguage.org at browser (instead of http://iolanguage.com) and I have met a new website on io! Which one is the 'official39;...
Steve. Here is a way to solve the problem. I have not tried this but it should be safe. I have tried the git process but not on io. # -- tag and commit cd io...
I wrote a very simple JSON parser suitable for using with things like web service and CouchDB responses. http://gist.github.com/42776 It doesn't encode JSON,...
Is there any way to do default values in method argument lists, a la PHP? Example: function php_function($default = "default") { echo $default; } I can call...
Hi, I am new to IO and today I wanted to get in touch with IO. For that reason I assigned a task to myself and wrote an IO program to fetch all my flickr...
Not specifically related to Io, although it could be a boost to the nursery space in Io's collector if it was... Going to lay out some ideas I've had recently...
Io currently has support for: - determining the core count - easily launching IoVMs in other threads - easily communicating with known instances But what's...
Greetings, After having successfully compiled io and several addons, I've come across one that's giving me trouble: Socket. I'm running Mac OS X, and have so...
There's two PostgreSQL add ons. Which one is preferred? I've tried both of them without success, but I'm not sure which one I should pursue debugging on. ...
Hello there, I've finished my tests using IO to get some data from CouchDB. And works very fine. Now, some applications using IO is getting real in my mind. ...
Hi, I was playing around with DistributedObjects and I notice that you cannot return a List from the server. The client always sees nil (Sequences and Numbers...
I have got newest Cygwin last week and I have downloaded io source; once the tar archive and once by 'git clone'. I executed command: 'makve vm 2> error.txt'...
Most 64-bit Linux distros use /usr/lib64 for 64-bit libs and /usr/lib for 32-bit libraries. AddonBuilder.io doesn't make any attempt to discover these....
I've added a new addon for language localization. It's very primitive at the moment, but it works. As an example of how to use it: o := Object clone do( en_CA...
Hi folks, Been a while since last posted. :) I was wondering if there was support for Io in any of the many IDE's out there yet? Has anyone tried making one...
Io> addX := method(nx, x = x + nx) ==> method(nx, x = x + nx ) Io> addY := getSlot("a") asString replaceSeq("x", "y") ==> method(ny, y = y + ny ) In this case,...
I found this very astonishing and disapointing: x := list (1,2,3,4) ==> list(1, 2, 3, 4) Io> x foreach(x, x print) 1234==> 4 Io> x ==> 4 So foreach does not...
Hello all! I've just pulled source from the git repository and ran the make commands without errors. However, when I try to use Regex module the script stops...
I was just trying out some example code from the Io guide, and I tried the minimal HTTP server. Code here: http://www.iolanguage.com/paste/p/cd4c8f097.html ...