Here's some addons that need docs: Postgres Cairo OpenGL GLFW SecureSockets Volcano Yajl ODE EditLine ReadLine If you'd like to document one of these please...
Is there any known problems or instructions for compiling Io on windows? One major road block to using Io is just this because of the platform of one of my...
I'm new to Io, and coming from Clojure, I'm clueless as to how one would distribute an application to end-users that aren't developers. I'm not even sure if...
With my C++/Io binding library, I'm getting errors that say various inline functions are defined multiple times. This is while compiling with mingw/sys. In...
So I want to build a version of Io with MinGW because I want to statically link the IoVM library to embed it in my game engine that's compiled with gcc/MinGW....
I'm trying to get a Backpacking server set up on my new linux machine (literally; a fresh install of Ubuntu 9.10, and an uptime under an hour as of this...
Hi All, On Mac OSX (Leopard): After successfully compiling Io and a bunch of Addons, I am unable to run the Io binaries (io or io_static) ONLY when I am in the...
Hi, Is there a list of adons that can be successfully compiled on Mac OS (Leopard), along with compilation/installation steps? I'm having a difficult time to...
In Io, when calling a method, message-trees are passed as parameters. It is unclear to me how the interpreter knows what to do with those message trees. For ...
... The parameters are always passed as trees. It's the implementation of createMethod that decides that it wants to evaluate some some code in some context....
Hello I have recently started fooling around with Io, and needless to say, I really like it. One thing I found a bit frustrating was the lack of easily...
Hi Iolanguage, I set up a Facebook profile where I can post my pictures, videos and events and I want to add you as a friend so you can see it. First, you need...
Hello folks; I've been thinking about the future of Io. As some of you know, I have my own language project, but the more I work on it, the more it's becoming...
Back to the unsolvable make problem once again: The "opposite" of gmake - the GNU make of Linux - is BSD make, which will tend to be make on BSD systems,...
I keep running across interesting Io projects that I hadn't heard about. Can anyone here with a Io project not listed on the Io site please post a link to it? ...
Is the Io interpreter fully re-entrant? For instance can I have an Io script that calls a C-function which does doString on some other Io code (in the same...
Pushed a simple Profiler today. Example use (file test.io): Profiler profile( a := method(x, x*x) 500000 repeat(a(2)) ) output: Profile: 3.291304s in CFunction...
It looks like "PDB sync" is failing due to some interaction with IoCoroutine. ... I'm not sure when this broke, but PDB and its unit tests did work fine as of...
Hey folks; Some of you may recall that I'm working on the mythical low level io-like language. That is, a language without a lot of the dynamism that io...
I'm wondering if there's a way to achieve asynchronous file access to stdin? Even when reading stdin in a new coroutine ('File standardInput @@streamTo(...)')...
I've seen the Object clone do ( ... ) syntax several times, but I don't see any documentation on it. I can infer that code this: Foo := Object clone do ( bar...
(http://blip.tv/file/2229292/) 25:30 is interesting Question: "Usually when someone creates a new language they have something in mind that they didn't find in...
I'm a little confused as to why self == Lobby in a new object's activate() slot: Test := Object clone do( init := method( self setIsActivatable(true) ) ...