I just installed Io-2007-01-04 (which presents itself as Io 20061207 on my PPC G5 Mac), and ode-0.5 (doing a "sudo port install ode"). When I try to run the...
Hi Jon, ... Sadly, "Scheduler: nothing left to resume so we are exiting" is a catch all error which doesn't provide many leads. Does tutorial1.io error as well...
Jon- I have this working on OSX 10.4 You need to have the OpenGL SDK from Xcode installed- Then add ODE as you have done- (I had to copy the ODE libs to...
What date is that the Io interpreter shows? Every time I run the interpreter in interactive mode, I get something like $ io Io 20061207 Io> I compiled this...
Thiago Arrais
thiago.arrais@...
Jan 5, 2007 1:31 pm
9719
It's an arbitrary date. -- Jeremy Tregunna jtregunna@... ... It's an arbitrary date. -- Jeremy Tregunna jtregunna@... On 5-Jan-07, at 6:29 AM,...
... Today I tried to run the /addons/Socket/samples/HTTPServer.io with the latest darcs repo io. That also gave me a "Scheduler: nothing left to resume so we...
I'm reluctant to add operators, but I find I use newSlot so frequently, that it might be worth having one for it. What do folks here think about ::= or : or...
... This one looks better, at least from a Self perspective. (Though don't take this as an endorsement, I'm not taking a side on this issue. =]) ... -- Jeremy...
... We definitely need an operator for newSlot. I also use it quite a bit and notice it is used a lot in the code I read. Would look much better with some...
... I have never used newSlot. Is there any other advantage (over setSlot) than getting the setter method for free? (I haven't had much use for setter methods...
I have been studying Io for about a month now and would like to get past the toy examples and engage on a real project to learn a little more. For that ...
Thiago Arrais
thiago.arrais@...
Jan 11, 2007 12:06 pm
9730
My 2p: Unit testing is already there, mocking seems a bit pointless in Io, XML is (sort of) already there - but could use some improvement and testing - and...
A networking library like python's twisted framework (except using Io's coroutines instead of state machines) would be nice: http://twistedmatrix.com/ - Steve...
... +1 to this; Io is severely lacking when it comes to decent collections lib. Though -1 to ruby-style. While simple, it leaves a lot to be desired. -- Jeremy...
the libxml2 stuff is pseudo-abandoned. It could use an API review and some fixing/docs/stuff. Quag and I did the original work and then I got busy with non-Io...
... There are bindings for xmlWriter and xmlTextReader, but it would be nice to have full xmlNode, xpath and xslt support. ... Io> list(4,5,2,4,1,2,3,4)...
I think I will go with the list/collections stuff that Carlos suggested. It seems to be sufficiently simple for a start and useful enough to attract some ...
Thiago Arrais
thiago.arrais@...
Jan 12, 2007 12:40 pm
9740
... That's not how Io's form works. The map implementation looks at the message if it's only got one argument, and applies it to the value of the current...
... Yup. Tried that. I should have said that Io just sends the message to the individual elements. Anyway, it really looks more functional to my eyes. And I...
Thiago Arrais
thiago.arrais@...
Jan 12, 2007 1:32 pm
9742
... The existing ones work just fine, don't worry about them :)...
... I think that's one more step towards a non-simple language for a language that wants to be simple. What about making := behave as newSlot? I don't use ...
... . would be ambiguous though. Consider the following code: 5 42 := "forty-two" 5.42 <-- what do we return? the floating point number 5.45 or "forty- two"? ...