So I was in the process of compiling all the libs for the addons and poking around looking for some info when I ran into a site in a language I can only guess...
The documentation shows an example, but does not tell how to compile that program. What flags are needed and against which library does one has to link. I've...
Hi, 1. The issues button on the Io website does not work anymore. Exception: compile error: expected a message but instead found a open group character ...
Have been lurking for awhile, and have started firing up IO in a real project at work -- I need to pull XML objects out of a web-based ticketing system that is...
I do like to compare different implementations. I've one script checking around 1480 files for some download statistics. Here's my timing for Ruby on this: ...
Although the mailing list is quiet, there is activity - patches are coming in and new members are joining: Typical number of people io irc channel: 44 Also, a...
Hey there, just letting the group know of some fixes I made to get the 1e3d3 commit building under Win32... 1. PortableSorting.c not so portable anymore. MSVC...
When commenting one line with /* ... */ it comments the lines below. I don't know too much about Kate syntax hightlighting but, in io.xml, changing the line: ...
Hello. I'm not much of a programmer -- more of a budding economist, really -- but Io seems nice. I have a few questions, in particular about the Range addon,...
I am trying to run IoBot, one of the samples for the Socket addon. It has a number of issues. The first is on line 41, where it sends the "error" message to a...
Hi there, I am having problems installing Io on OS X (10.5.3), and would dearly love some help. Specifically, if I download the src from the website (or git it...
Hello all, I really wish I had more time to play with Io right now, and I am sorely anticipating the opportunity to start on a project with it, but for now I'm...
Hello, For example, I want to get the third character of string "Hello". I write something like this: "Hello" at(2) asCharacter This is of course not that hard...
Hi, Doxygen does not support the Io language. Writing a parser for Io and adding it to the doxygen sources is hard (well, it looks difficult to me). Does...
Hello, I am new to Io, coming from Stackless Python. I have to say that I love it; I already have the attitude that no matter what shortcomings it may have ...
Is it possible to implement 'break39; and 'continue39; in Io? Should 'break39; and 'continue39; be considered operators? Should 'return39; be referred to as a "method"? ...
In other languages it is surprisingly useful to be able to leave commas hanging (e.g. in a list that may expand). Currently, Io says Exception: compile error:...
I just started trying Io today, and was really excited to discover the Python bridge; I have visions of higher-order programming finally taking over the world,...
I've been wondering about := recently. It is kind of like an operator, but not really since: Lobby foo := "bar" is apparently a message being sent to the Lobby...
I'm confused about blocks vs methods in various ways. For starters, how does one pass arguments to blocks? b := block(a, 2 + a) b ==> method(a, 2 + a b(2)...
Hello, I am trying to run this code (which is a code on online guide): 1 to(5) foreach(v, v println) But it gives this error: Exception: Number does not...
Hello, I wanted to distribute my program into files. I will have an .io file for every object prototype and some of them will include each other. Should I use...
I'd welcome feedback on Io's new persistent store database: http://www.iolanguage.com/scm/git/checkout/Io/docs/IoReference.html#PDB It's working but is still a...
Signed-off-by: Michael Witten <mfwitten@...> ... This patch is also attached as a file. docs/IoGuide.html | 8 ++++++-- 1 files changed, 6 insertions(+),...
Hello, I newly met with Io language. It is beautiful, thank you very much. It took me 1 day to learn the language and attend to the programming challenge 13 on...