Hello, I found the following on the python-dev mailing-list (yop! ;-). ========================================= [Python-Dev] prototypes (was: Type/class) ...
spir
denis.spir@...
Mar 1, 2009 3:32 pm
11409
How do I build IO for win 32? I have tried previously using the .sln files but this has not worked....
i tried to build it on mingw using msys and it complained. IoNumber.c requires a fix so that the log2 macro is only defined if its on win32 and not on mingw ...
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...
Windoze
how2paut@...
Mar 24, 2009 5:27 am
11416
Hey dude, I compiled Io several times and when there is an error with an addon it simply continues to compile. I had "fun" with libsgml and always wondered why...
A follow up ... does this reveal anything? Io> Addons ==> Object_0x80532a8: EditLine = Object_0x808d1e8 ReadLine = Object_0x8070e90 -- View...
Windoze
how2paut@...
Mar 25, 2009 2:46 am
11418
... Thanks for the reply, Andreas. As an Io N00B, I guess you are saying that editline is an addon package? Compiling Io, I don't recall any error messages,...
Windoze
how2paut@...
Mar 25, 2009 5:05 am
11419
Run it through a program like script(1) and then read the typescript searching for EditLine. There you will see the compiler errors. Io build silently fails on...
Jeremy Tregunna
jeremy.tregunna@...
Mar 26, 2009 12:05 am
11420
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...
... That's right, it does. ... That's because it's parsed as: -(23 abs) Correct me if I'm wrong, but 23 abs would be 23, and 0 - 23 (Object - assumes 0 minus...
Jeremy Tregunna
jeremy.tregunna@...
Mar 26, 2009 10:19 pm
11422
... Righto, now I see. I come from the C++ world, where the unary - operator even gets it's own overloads distinct from the math minus operator. So I'm used...
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...
Morning, I just posted an "issue" and I'm wondering if it's supposed to show up there... :). Kind regards, Andreas. ... -- - Kind regards, Andreas Schipplock....
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,...
Hi all, I think it's nice that Io is going to have a bug tracker again. Is it possible to answer to reports on GitBug? I can't see a button for that even if...
Friedrich Weber
fred.reichbier@...
Apr 13, 2009 7:11 pm
11428
... I would suggest only using Io as a control language in such a project unless you turn on SIMD acceleration and only do intensive vector related...
Jeremy Tregunna
jeremy.tregunna@...
Apr 13, 2009 7:32 pm
11429
... It's ~2 orders of magnitude slower than C for typical scripting uses. That said, given that graphics is done on the GPU and the audio is mostly in C, there...
... Not sure. If not, maybe a feature request to the GitBug author would be helpful. Fwiw, if he can keep GitBug simple, I'd certainly pay a small yearly ...
I've a very simple bug tracker i wrote in ruby, for caribou's website. just the absolute basics, severities, priorities, brief descirptions, how to repeat,...
Jeremy Tregunna
jeremy.tregunna@...
Apr 14, 2009 11:46 am
11432
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...
Jeremy Tregunna
jeremy.tregunna@...
Apr 15, 2009 4:40 pm
11433
I suppose a use case would be apropos. It'll be very bad, but design isn't what this is about. Consider the utility object "Math" containing an "add" method...
Jeremy Tregunna
jeremy.tregunna@...
Apr 15, 2009 4:47 pm
11434
... Hmm.. can you explain a bit more -- *why* you would want to do this. It's useful to know that this is how Io behaves but it's not obvious to me why it's...
Guy Hulbert
gwhulbert@...
Apr 15, 2009 4:56 pm
11435
... Isolation. Use this method when/if you anticipate your parent(s) might change in the future, but you want to preserve their current behavior as a snapshot...
... An example: Foo := Object clone do(prependProto(Math); ...) Foo add(2, 3) == 5 // before replacing Math add Foo add(2, 3) == 6 // after replacing Math add...
Jeremy Tregunna
jeremy.tregunna@...
Apr 15, 2009 5:17 pm
11437
Le Wed, 15 Apr 2009 10:04:38 -0700, ... I would rather ask the opposite question: in which (real world and/or theoretical) case can one expect the parent...