... You can do no such thing in Scala or any other language I'm familiar with. Io is pretty unique here and this consistency is one of the things I love about...
12596
Petr Man
petr@...
Nov 30, 2010 3:55 pm
Hello, I have found accidentally that there is a clone of Io in the PyPy SVN repo. Since I didn't see any reference to it in the mail archive except for some...
12597
Steve Dekorte
stevedekorte
Nov 30, 2010 4:32 pm
Neat - any performance numbers?...
12598
Joshua Cearley
joshua.cearley@...
Dec 1, 2010 1:11 am
Greetings, I haven't done a lot of checking to see if someone has tried this or not, but I noticed that the stock Lua has a pretty good set of benchmarks on...
12599
Steve Dekorte
stevedekorte
Dec 1, 2010 4:06 am
... Hi Joshua, The Io/JS project started as a Io/Lua project. I got a basic Io/JS interpreter running (on v8, it was ~10x slower than the C version) but...
12600
quercerandjanath
quercerandja...
Dec 1, 2010 8:25 am
... That would be fantastic....
12601
Joshua Cearley
joshua.cearley@...
Dec 2, 2010 7:05 am
I came across two bugs in the Socket addon using the (at the time of writing, latest checkout). For future reference the commit checksum is...
12602
Martin Kühl
martin.kuehl
Dec 2, 2010 7:58 am
... Does the patch affect compatibility with the stable release of libevent, 1.4.14b? (2.0.9 is the latest in a series of release candidates, as far as I can...
12603
Joshua Cearley
joshua.cearley@...
Dec 2, 2010 8:08 am
... I haven't checked. I would assume since I used the macros defined in the backwards compatibility header that those macros also exist in earlier versions,...
12604
Martin Kühl
martin.kuehl
Dec 2, 2010 8:26 am
... My bad, I had only tried duplicating the session you posted earlier; once I actually pass a block I get the same error. Martin...
12605
Petr Man
petr@...
Dec 2, 2010 8:27 am
Hello, ... From what I can remember, Io is directly accessing the http buffer, which never was a feature that should be used by any application. The 1.4.x...
12606
ms140569
Dec 2, 2010 9:08 pm
Hi Jeremy + all, I came across this thread: "Thought for the future of Io" http://tech.groups.yahoo.com/group/iolanguage/message/11863?var=1&l=1 and wanted to...
12607
Antti Holvikari
aholvika
Dec 4, 2010 10:38 pm
The Io language Reference page sometimes displays a summary or an index of the slots available in an Object. There's also a search bar at the top of the page....
12608
dennisf486
Dec 4, 2010 11:54 pm
... I guess I could live with that. What I really meant was that currently, if it doesn't find the "depends" script in that folder it bails out early, and I'm...
12609
Steve Dekorte
stevedekorte
Dec 5, 2010 12:09 am
... I like your idea. A one line change to AddonLoader.io might do the trick :) - Steve...
12610
dennisf486
Dec 5, 2010 12:25 am
... I have a C++ library for binding with Io that is 95% finished. The library has been nearly finished for half a year now but getting the library to build...
12611
dennisf486
Dec 5, 2010 12:32 am
... Oh, forgot to mention, have you looked at LLVM at all? A program that includes LLVM as a library can use it to JIT code that will call a function. I...
12612
Joshua Cearley
joshua.cearley@...
Dec 5, 2010 1:11 am
I have a set of objects with prototypes and forward overrides that let the existing parser deal with the syntactic intricacies of specifying the code stubs to...
12613
dennisf486
Dec 5, 2010 5:07 am
... I'm using very deep magic when it comes to templates; think boost on crack. What's going on is it's taking function pointers and stripping the type...
12614
Joshua Cearley
joshua.cearley@...
Dec 6, 2010 3:08 pm
Clang "works" like GCC, you just call it instead; they've mimicked a lot of the flags to make adoption considerably easier. However, it's a C/Obj-C compiler...
12615
Tres Walsh
jedidude567
Dec 6, 2010 6:25 pm
... C++ support is actually very stable right now, as it completely implements the C++03 standard, as well as some basic non code generation portions, such as...
12616
goenzoy@...
goenzoy
Dec 6, 2010 10:56 pm
Hello to everyone, Just started the book "Seven Languages in Seven Weeks" and so discovered Io.Bfore I try to build Io from scratch hope nobody minds my post...
12617
Steve Dekorte
stevedekorte
Dec 6, 2010 11:02 pm
The basic build procedure should work on those platforms. To compile the addons though, you may need to install some libs....
12618
Steve Dekorte
stevedekorte
Dec 7, 2010 9:22 am
I've added a lexicalDo() method to object. It's basically: Object lexicalDo := method( self appendProto(call sender) self doMessage(call message arguments...
12619
Steve Dekorte
stevedekorte
Dec 7, 2010 9:25 am
... * other than that it changes the object's protos for everyone while it is executing - which may be fine if this is used only for the typical case of object...
12620
quercerandjanath
quercerandja...
Dec 7, 2010 9:55 am
Excellent! I'm pretty sure there was no reason for not doing this earlier, and we just didn't get around to it. Jeremy even wrote one, years ago, but AFAIK...
12621
Steve Dekorte
stevedekorte
Dec 9, 2010 1:35 am
Andreas Schipplock has kindly donated the iolanguage.org domain to the project. Thanks Andreas! The Io website is now available at iolanguage.com and...
12622
kostlerandreas
Dec 12, 2010 10:35 am
Hello all, I am currently working through Bruce Tate's excellent "Seven Languages in Seven Weeks". I have a few noob questions on Io. First of all, Io has...
12623
Marc 'BlackJack...
marrin666
Dec 12, 2010 12:22 pm
Hi Andreas, ... Well, you get a simple setter without the need to create one yourself. So you can write something like this (untested):: Point := Object clone...
12624
Andreas Kostler
kostlerandreas
Dec 13, 2010 12:41 am
Thank you for your reply Marc, I'm still a bit lost on the if conditional. Consider the following conversation with Io: Io> "Hello" ==> Hello Io> "Hello"...