Hi. I'm new to the Io community here so I hope I'm not committing a faux pas by posting to the mailing list about a project I want to do *with* Io rather than...
8215
Samuel A. Falvo II
falvosa
Feb 4, 2006 7:09 am
... There is a project called ioL4, which is Io ported to the L4 microkernel. However, it is woefully out of date. -- Samuel A. Falvo II...
8216
Jonas Eschenburg
jonas_eschen...
Feb 4, 2006 12:57 pm
Hi, more than a week has passed without any significant attention. I guess this is not due to lack of interest, but to poor wording and a lack of understanding...
8217
semmerlbemmerl
Feb 6, 2006 4:39 am
Hi everybody, the 1.0beta made some things different, so I decided to try to write a conditional analogous to the if example I found somewhere on the webpage,...
8218
d_peschel
Feb 6, 2006 4:39 am
The features of Io are very promising, but I downloaded it hoping to learn the language by using Propulsion (or some other debugger or introspection utility)....
8219
Jason Grossman
jas0ngr0ssman
Feb 6, 2006 4:57 am
... I think this is a great idea. How to implement it? Maybe individuals should sign up to their favourite example code to (try to) make sure that it works...
8220
Stacy Curl
stacycurl
Feb 6, 2006 6:44 am
I hope that Io will not loose the capability to perform lazy evaluation of arguments, Using this feature it is possible to define language syntax on a per ...
8221
Nicholas Seckar
nseckar
Feb 6, 2006 6:57 am
... I don't think you need to worry about that happening. :-)...
8222
Jon Kleiser
jon_kleiser
Feb 6, 2006 9:23 am
Quite a few times I've tried to submit patches to the darcs repo, but I've got no indication that they really made it through, or have been accepted. I have...
8223
SainTiss
saintiss@...
Feb 6, 2006 3:58 pm
Hi all, I'm getting some VERY weird behaviour here: the following code should obviously result in the objects with name="a" and name="b" being the two elements...
8224
Steve Dekorte
stevedekorte
Feb 6, 2006 7:30 pm
... Why are you cloning the clone method? -- Steve...
8225
SainTiss
saintiss@...
Feb 6, 2006 8:24 pm
Ok, that's probably not really necessary... This code stems down from some things I've been trying before, and then I modified clone more severely, which is...
8226
Jeremy Tregunna
jtregunna_io
Feb 6, 2006 8:58 pm
Just because... here's my version of cond (it's most certainly not the one that most people would find intuitive, but it's sufficiently different from the...
8227
Jeremy Tregunna
jtregunna_io
Feb 6, 2006 9:17 pm
One correction: ... Becomes this: return res ... -- Jeremy Tregunna jtregunna@... "If you round off the fractions, embedded systems consume 100% of the ...
8228
SainTiss
saintiss@...
Feb 7, 2006 8:43 am
I stand corrected. It IS necessary at least in a few places of course. Inside the new clone method, I want to call the old method first, then do some extra...
8229
Zachary Zolton
zachary.zolton@...
Feb 7, 2006 7:04 pm
hey all, i'm new here to io, so excuse my newbieness... i'm really impressed with this language's potential and (lack of) syntax; all the extra code i have to...
8230
Jared Nuzzolillo
onceuponapriori
Feb 7, 2006 7:08 pm
Ditto! My build keeps dying......
8231
Zachary Zolton
zachary_zolton
Feb 7, 2006 7:14 pm
which compiler/environ are you using? i wonder if it builds using vc++ 2005... tho i highly doubt it!...
8232
Nicholas Seckar
nseckar
Feb 7, 2006 8:39 pm
... Have you not seen super? Io> a := Object clone do(x := method(1)) Io> b := a clone do(x := method(super(x) + 1)) Io> b x ==> 2 Io> a x ==> 1...
8233
Jared Nuzzolillo
onceuponapriori
Feb 7, 2006 8:43 pm
cygwin...
8234
Alwin Blok
alwinblok
Feb 7, 2006 9:07 pm
Hello, Is it possible to implement := style behavior in io? I'm trying to implement a lazy setSlot method: Object linkSlot := method( mess := call message...
8235
Quag
quagath
Feb 7, 2006 10:37 pm
Hi Alwin, I think you are asking how to create new operators like := and =. With the current parser (implemented in C) this is difficult. I've written a (slow)...
8236
SainTiss
saintiss@...
Feb 8, 2006 8:35 am
On Tue, 7 Feb 2006 12:04:03 -0500 ... Of course, but I wanted to modify Object itself, not clone it first. By the way, the cause of the problem has been...
8237
Alwin Blok
alwinblok
Feb 8, 2006 5:20 pm
... hmm, ok.. so will it be possible in the future to do something like this? I see 'Parser in Io' planned for 1.0. Does this mean io will be parsed (by...
8238
Steve Dekorte
stevedekorte
Feb 8, 2006 6:11 pm
... Yes, though it will be lexed in C. -- Steve...
8239
Derek Peschel
d_peschel
Feb 8, 2006 9:38 pm
... Thanks, and I will do what I can myself. But it doesn't answer my other question about how to get the sample apps to work. -- Derek...
8240
dpeschel@...
d_peschel
Feb 8, 2006 9:45 pm
From skimming old messages here, I gather there has been at least one attempt to add a lexer/parser written in Io to the one in C. Is that up to date? If so,...
8241
Steve Dekorte
stevedekorte
Feb 8, 2006 9:57 pm
... Have you considered using the Importer? If you make your file and proto names the same, it "just works". -- Steve...
8242
Quag
quagath
Feb 9, 2006 4:27 am
Hi Derek, ... Try, File clone setPath("theFile.io") contents asMessage To give you a "parse tree". Check out http://pipapo.org/iowiki/PasteBin/MessageMatch for...
8243
Quag
quagath
Feb 9, 2006 4:40 am
Hehe, I think the right way is to poke Steve so he knows that you sent him a patch. Sometimes they can get lost in all his other mail. Jonathan....