Has anyone got multiline regular expressions to work? I'm using Io 20060104 on OS X 10.4.3 Just trying to get this simple test working... s :="""hello this is ...
I have written a tiny container (namespace/module whatever you want to call it) system for Io. Features: - Type slots are automatically assigned, so you can...
... Hash: SHA1 In my ongoing quest to kill the then() and else() methods on boolean, here is another conditional. This one is specifically there to handle ...
Hi, I've succeeded to get the sources from the darcs repository (using --partial) and tried to compile everything with make. BUT it's not working and quits...
I tried building IoFull-2006-01-04 on a lark. FYI, make on WinXP with Mingw/MSYS fails because skipdbtest.c uses gettimeofday without making provision for...
The manual <http://www.iolanguage.com/darcs/Io/_docs/guide.html#TOC23059> mentions three predefined children of the Exception proto: Error, Warning and...
Hello everyone, After talking with Steve at our weekly Io meetings, we came up with a new conditional structure. This structure seems pretty powerful, and has...
Hi, I'm trying to get the sources from darcs with cygwin on Windows2000, but this is what happens: $ darcs get http://www.iolanguage.com/darcs/Io Copying patch...
Hi John, The flow control flags used for returning, continuing and breaking need to be exposed as io objects. Once these flags are exposed, returns can be made...
Hi, I just downloaded the latest release binaries for OSX and wanted to start playing with the SGMLParser. However when I do this: Io> tags := SGMLParser...
With the old try/catch style we could have methods that returned their values within a 'try' part, or within a 'catch39; part. Since the new style try and catch...
If you start Io 20051211 with a script file like this ... ./ioDesktop some-path/script.io ... then Lobby launchPath will not be set correctly. I have changed...
Hi, recently I was giving a look at Seaside (http://seaside.st) a web framework for Smalltalk (Squeak, in particular) which uses continuations as a basic...
Hi. Where can I find bindings for Windows? Regards, Inash Zubair ______________________________________________________________________ This email has been...
Hi, just found the following strange behavior ... Io 20051221 Io> a := method(s, @@ writeln( s )) ==> method(s, @@(writeln(s))) Io> a("hey") Exception:...
With release 2005-12-11 I get a strange error with this code: loop := method( for(i, 1, 10, writeln("here") ) ) Io> loop := method(x, for(i, 1, 10, Exception:...
I've followed the very interesting threads about error handling in Io and the status of the exceptions. I profited quite a lot especially of the suggestions of...
Hi, I'm trying to wrap the arguments of List append into WeakLinks and then pass them to the same method in the proto. So e.g. if I call myList append(1,2) I...
Io> DynLib clone open("libpq.so") Exception: Error loading object 'libpq.s39;: 'libpq.s: cannot open shared object f ile: No such file or directory' ...
Hi, All! I have a problem with resend method: A := Object clone do ( forward := method(2)) B := A clone do ( msg := method(resend + 3)) B clone msg print this...
Hi, I have this line in my UnitTest: assertRaisesException(List aNewMethod) And if it didn't raise an exception, I'll see this: Should have raised Exception If...
Hi, Please find attached a unit test for WeakLinks, which demonstrates its current problems... (I accidently left in a few debugging statements in the previous...
We all seem to be dancing around the issue of error handling here. Everyone has a different point of view, and that's fine; but instead of dancing around the...