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 ...
8211
David Fayram
d_fayram
Jan 30, 2006 6:50 pm
... Hash: SHA1 This is beautiful, Ulysses. ... - - Dave Fayram - - dfayram@... - - dave@... - -- Check out ma.gnolia.com ... Version: GnuPG...
8210
Nicholas Seckar
nseckar
Jan 30, 2006 6:23 pm
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...
8209
Steve Dekorte
stevedekorte
Jan 30, 2006 11:15 am
... Hey John, It looks like it disappeared after moving the actors implementation into Io. I've added it and pushed the change to the public repo. -- Steve...
8208
John Nowak
john@...
Jan 30, 2006 7:08 am
Does anyone know what happened to the wait method? I'd like to make my lovely script pause for a few seconds here and there... - John...
8207
William Tanksley, Jr
wtanksle
Jan 30, 2006 4:46 am
... Would it be possible to replace the then() and else() methods with making if() act as a macro, and have it look ahead for then() and else()? That way you...
8206
Carsten Eckelmann
carsten_ecke...
Jan 30, 2006 4:04 am
... That's really neat, I'll second that. Would be cool if there was a match operator like ~ in Ruby so you could say: aString := "mail@..." case(...
8205
David Fayram
d_fayram
Jan 30, 2006 1:24 am
... 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 ...
8204
Steve Dekorte
stevedekorte
Jan 27, 2006 7:29 am
... Thanks, I've added it. -- Steve...
8203
Doug Currie
e4liberty
Jan 27, 2006 4:55 am
Continuing my own thread on building IoFull-2006-01-04 on WinXP with Mingw/MSYS... Commenting out the line # $(MAKE) $(EXE) in the "all" target in...
8202
Doug Currie
e4liberty
Jan 27, 2006 4:54 am
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...
8201
Jonas Eschenburg
jonas_eschen...
Jan 26, 2006 7:50 pm
... I resent the last one wich should apply to the current patchset (tell me if it doesn't). Jonas...
8200
Jon Kleiser
jon_kleiser
Jan 26, 2006 3:02 pm
... Excuse me if I have done something wrong. My knowledge of how to use darcs may still be incomplete. What I tried to do, was like this: cd...
8199
Steve Dekorte
stevedekorte
Jan 26, 2006 11:21 am
... IIRC, you submitted it while I was in the middle of a bunch of Coro changes (Coro stacks are no longer alloced as part of the Coro struct, etc). Can you...
8198
Steve Dekorte
stevedekorte
Jan 26, 2006 10:45 am
... Which ones? I don't see any patches from you on the 20th. Btw, it's helpful if patches are sent to me directly with a subject of "<description> patch"...
8197
Steve Dekorte
stevedekorte
Jan 26, 2006 10:40 am
... I've re-added them. -- Steve...
8196
Steve Dekorte
stevedekorte
Jan 26, 2006 4:02 am
... Hi Ryan, It's been re-added to the darcs dev repo and will reappear in the next release. -- Steve...
8195
ryanraaum
Jan 26, 2006 12:55 am
Hi, Is the lack of the ObjcBridge in the Jan 2006 release a transitional sort of thing or is it gone for good? Best, -ryan...
8194
Jonas Eschenburg
jonas_eschen...
Jan 24, 2006 9:50 am
... There should be an "experimental" repo where most (if not all) patches are included so Steve can include them in the main repo whenever he likes. Someone...
8193
Jon Kleiser
jon_kleiser
Jan 24, 2006 9:23 am
... Today, after pulling the 5 last patches, I tried both "make" and "make clean", but both failed. If I remember correctly, the "make" gave a Bus error. Then...
8192
Jonas Eschenburg
jonas_eschen...
Jan 24, 2006 8:49 am
... Could you tell me the exact darcs commands you used and your darcs version? I have been trying to get this to work for ages without success. :-( ... Steve...
8191
Quag
quagath
Jan 24, 2006 8:40 am
I think David meant to say, Io> f := method(x, y, 13) ==> method(x, y, 13) Io> f("a" print, "b" print, "c" print, "d" print) ab ==> 13 f is a method with two...
8190
David Fayram
d_fayram
Jan 24, 2006 5:01 am
... yc := method(one, two, one) yc("hello " print, "world" print) # stdout: hello world # ==> hello Argument one and two are both evaluated. If your method...
8189
Carsten Eckelmann
carsten_ecke...
Jan 24, 2006 4:42 am
... io> sum := method(x, y, x + y) io> sum(3 print, 4 print) 34 => 7 io> sum( sum(1,2), 3) => 6 Which indicates that the arguments are indeed evaluated before...
8188
qg@...
trent_w16
Jan 24, 2006 3:57 am
... Umm, this is Io, we never evaluate the arguments of calls before we do them. Or did I miss something? Trent...
8187
David Fayram
d_fayram
Jan 23, 2006 10:56 pm
... This is a very good reason not to use commas that I hadn't thought of. It is actually inconsistent to use commas since evaluation is not carried out in the...
8186
AgentM
agentm@...
Jan 23, 2006 10:04 pm
Except that in Io, arguments are evaluated IFF they are bound or explicitly evaluated. Thus, newConditional can be written (as shown earlier) without any...
8185
Carsten Eckelmann
carsten_ecke...
Jan 23, 2006 9:46 pm
... I have only just started with Io (still trying to get it built on my system) but I personally like the second option better. It looks more in common with...
8184
Jonas Eschenburg
jonas_eschen...
Jan 23, 2006 8:57 pm
Hi Jonathan, I admit you have a point with making things more complicated. An implementation of a for loop would not be as straight-forward as it is now,...
8183
David Fayram
d_fayram
Jan 23, 2006 6:51 pm
... Maybe I made a mistake not explaining in detail why They make it readable when your result clauses span lines. One of the problems with if() is what...