Search the web
Sign In
New User? Sign Up
iolanguage · Io
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 8214 - 8243 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8214
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...
dennisf486
Offline Send Email
Feb 4, 2006
6:44 am
8215
... 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...
Samuel A. Falvo II
falvosa
Offline Send Email
Feb 4, 2006
7:09 am
8216
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...
Jonas Eschenburg
jonas_eschen...
Offline Send Email
Feb 4, 2006
12:57 pm
8217
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,...
semmerlbemmerl
Offline Send Email
Feb 6, 2006
4:39 am
8218
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)....
d_peschel
Offline Send Email
Feb 6, 2006
4:39 am
8219
... 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...
Jason Grossman
jas0ngr0ssman
Offline Send Email
Feb 6, 2006
4:57 am
8220
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 ...
Stacy Curl
stacycurl
Offline Send Email
Feb 6, 2006
6:44 am
8221
... I don't think you need to worry about that happening. :-)...
Nicholas Seckar
nseckar
Offline Send Email
Feb 6, 2006
6:57 am
8222
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...
Jon Kleiser
jon_kleiser
Offline Send Email
Feb 6, 2006
9:23 am
8223
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...
SainTiss
saintiss@...
Send Email
Feb 6, 2006
3:58 pm
8224
... Why are you cloning the clone method? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 6, 2006
7:30 pm
8225
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...
SainTiss
saintiss@...
Send Email
Feb 6, 2006
8:24 pm
8226
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...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Feb 6, 2006
8:58 pm
8227
One correction: ... Becomes this: return res ... -- Jeremy Tregunna jtregunna@... "If you round off the fractions, embedded systems consume 100% of the ...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Feb 6, 2006
9:17 pm
8228
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...
SainTiss
saintiss@...
Send Email
Feb 7, 2006
8:43 am
8229
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...
Zachary Zolton
zachary.zolton@...
Send Email
Feb 7, 2006
7:04 pm
8230
Ditto! My build keeps dying......
Jared Nuzzolillo
onceuponapriori
Offline Send Email
Feb 7, 2006
7:08 pm
8231
which compiler/environ are you using? i wonder if it builds using vc++ 2005... tho i highly doubt it!...
Zachary Zolton
zachary_zolton
Offline Send Email
Feb 7, 2006
7:14 pm
8232
... 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...
Nicholas Seckar
nseckar
Offline Send Email
Feb 7, 2006
8:39 pm
8233
cygwin...
Jared Nuzzolillo
onceuponapriori
Offline Send Email
Feb 7, 2006
8:43 pm
8234
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...
Alwin Blok
alwinblok
Offline Send Email
Feb 7, 2006
9:07 pm
8235
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)...
Quag
quagath
Offline Send Email
Feb 7, 2006
10:37 pm
8236
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...
SainTiss
saintiss@...
Send Email
Feb 8, 2006
8:35 am
8237
... 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...
Alwin Blok
alwinblok
Offline Send Email
Feb 8, 2006
5:20 pm
8238
... Yes, though it will be lexed in C. -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 8, 2006
6:11 pm
8239
... 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...
Derek Peschel
d_peschel
Offline Send Email
Feb 8, 2006
9:38 pm
8240
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,...
dpeschel@...
d_peschel
Offline Send Email
Feb 8, 2006
9:45 pm
8241
... Have you considered using the Importer? If you make your file and proto names the same, it "just works". -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 8, 2006
9:57 pm
8242
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...
Quag
quagath
Offline Send Email
Feb 9, 2006
4:27 am
8243
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....
Quag
quagath
Offline Send Email
Feb 9, 2006
4:40 am
Messages 8214 - 8243 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help