I am new to this language, and I love it. I made first contact a couple of months ago with the book 7 langs in 7 weeks. But I have been really struggling...
Hello all, Just posting to announce that I've updated the win32 binary package to fix a directory structure issue I had in the previous release, leading to...
I've been playing around with writing a simple mud in Ruby/Revactor, and now bringing it to Io. For the most part it's straightforward, but reloading Io files...
After reading Bruce A. Tate's 7 languages book, I wondered whether it would be possible to configure IO to support the basic dependency syntax of Unix make....
I hit a snag in my script refactoring. I'm trying to wrap all my proto creations inside methods so that I can pass dependencies as arguments, but I can't...
In my game engine I now have over 64 Io scripts and probably 100 protos. I reference many 3rd-party libraries, and I want to know what scripts are importing...
Hello all, Just thought I'd let you know that I'm updating the binary builds of Io this weekend, to reflect the last 4 months of development on mainline Io. ...
Hello, I am trying to use Io under Ubuntu 10.04 and have a strange behaviour: % cat operator.io OperatorTable addOperator (":",1) Object : := method (a, self...
having a hell of a time with addons!! This site: http://jetpackweb.com/blog/2011/02/08/io-language-addons-and-making-them-work-in-ubuntu/ explained that a...
In http://www.iolanguage.com/scm/io/docs/IoGuide.html#Primitives-Networking it says: [quote] Note that you'll need to first reference the associated addon in ...
I wanted to give everyone a short heads up. This weekend, I'm planning on retiring the Range C addon forever (at least in terms of my maintenance). Handling...
Error while compiling was: IoThread.c:24:15: error: ‘IoTag_newWithName_protoId’ undeclared It was caused by a missing open parantheses (. Signed-off-by:...
Error while compiling was: IoThread.c:24:15: error: ‘IoTag_newWithName_protoId’ undeclared It was caused by a missing open parantheses (. Signed-off-by:...
Hi everyone, I am reading Bruce Tate book on 7 languages in 7 weeks, and I came upon IO. So far this is quite a fun language. But there is one thing that...
If you're a VIM user, here is another Io syntax file for your editing enjoyment. http://static.eradman.com/code/io.vim Feel free to adapt to your own needs. ...
I want to propose a change in direction for the standard library foreach(), select(), and friends methods. I'll supply code, don't worry about that. Right now,...
Hi, I started writing a DBus client library (you can find it on github). This is also my first project in Io, so I need to grasp a few things first. I just...
Hi, I have a string in the forme given by String asHex. That is a collection of bytes, encoded using two hexadecimal characters, all concatenated together. i'm...
Hi, The unix socket implementation is here: addons/Socket/source/IoUnixPath.c<https://github.com/stevedekorte/io/blob/master/addons/Socket/source/IoUnixPath.c>...
Hi, I'd like to start using dBus with Io to get started with a real application. But, there is no dBus binding. I thought I would re-implement dBus in pure Io....
I am looking for boolean operations in Io. I need to write something like this: if (a == b) or (c == d) .... Now I have created such code: divided_by :=...
If Io will compile with llvm-gcc, then you can use emscripten https://github.com/kripken/emscripten/wiki To compile a javascript version. I haven't tried Io,...