Since it looks like some people are online answering messages right now, I thought I'd ask a quick question of you. :D For the game engine I'm working on, I...
It seems to start with /usr/include/evhttp.h:111: error: expected specifier-qualifier-list before `TAILQ_ENTRY39; and goes downhill from there. (Maybe they...
The really old problem in starting io io: error while loading shared libraries: libiovmall.so: cannot open shared object file: No such file or directory is...
This build problem first occurred a couple years ago for me, and I just noticed the latest code I pulled from github still has the same issue. Steps to...
Anyone know how to build Io statically? MinGW binaries work in Wine with Ubuntu, so I'm trying to build piece by piece. I'm getting dynamic lib build errors....
After running into a rare bug in the previous hash table code, I rewrote it last week and have been tweaking the new code a bit, including a few critical fixes...
When I try to build the current git status (trying to do so in preparation for submitting a Win32 patch), I get lots of errors on both Windows and Linux. They...
Hi all, I've been toying with Io for a while (since I found out about it via Pixar's usage). I've been looking for a nice powerful, embeddable, extendable...
I'm not on IRC, so I don't know what's new these days. Any news on the core library refactoring? I have to be honest, I'm interested because I'm working on...
In Io, I know it's possible to set a slot on a specific literal, for example: Io> 10 foo := 1 ==> 1 Io> 10 foo ==> 1 ... Exception: Number does not respond to...
I've been working with my own language again, and have noticed a significant speedup when I inlined message arguments into a flat array. There is then logic...
HI all, I've read most of the docs on Io, but am still unclear about these two items: What's the difference really between *::=* and *:=* The ' := ' is...
Hi all, I have the following small program using coroutines: cnt := Object clone cnt N := 0 cnt inc := method("incing!" println; N = N + 1) cnt read :=...
I'm interested in replacing Lua in a program I maintain, for various reasons, so I'm in the market for a language that supports embedding in the following way...
Just thought I'd put this out there, topic came up in #io today about real mixins (not utilizing differential inheritance), so I set out to write them and...
Are there any known issues with the MySQL Addon? I just keep getting MySQL connection error (2003), saying it can't connect to the host I'm using (I've tried...
I've set up a bug tracker for Io at: http://gitbug.appspot.com/projects/iolanguage/ Please feel free to post to it. It's just a test for now, but if it works...
Hi, I've become interested in learning Io and using it for game development and was wondering how its performance compares to c and/or objective-c. Of course,...
In the Windows version of Io, if I type: (-23) abs It returns: 23 However if I type: -23 abs I get: -23 (Expected it to be same as parenthesized version, but...
Greetings all, did a search here and found posts that lead me to believe my Io install didn't work correctly. Io works fine, but the CLI editing doesn't...
Hello, I found the following on the python-dev mailing-list (yop! ;-). ========================================= [Python-Dev] prototypes (was: Type/class) ...
Hello, blocked again. How do I check a string is a valid number representation? When I convert an invalid one, it does not raise an exception, returns nan...
Hello, I'm playing with OperatorTable. Fine. However, I can't have addAssignOperator work properly. The method works fine, but the operator itself is not...
Hello, Thank to Jer, I discovered that, actually, messages are named; this should cover most cases where object names may be needed, probably. Below an example...