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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 847 - 876 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
847
Hi! Just a notice that there are two warnings when compiling IoLexer.c with gcc on Linux (I used GNUstep makefile system to compile Io): Sources/Io/IoLexer.c:...
Sebastien Pierre
sebastien.pierre@...
Send Email
Apr 2, 2003
9:03 am
848
Sebastien, Thanks for the feedback. Is it in this line?: if (c == NULL) { IoLexer_popPosBack(self); return 0; } If so, does this fix it?: if (c == 0x0) {...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 2, 2003
10:10 am
849
Hi Steve! On Wed, 2 Apr 2003 02:09:59 -0800 ... Yes! this fixes the warning (you've got to do it at both line 405 and 423). -- Sebastien...
Sebastien Pierre
sebastien.pierre@...
Send Email
Apr 2, 2003
10:14 am
850
Hi all, I was wondering if some `char *' in Io should not be `const char *' instead, like in the print callback (IoState_printCallback_). I don't think the...
Sebastien Pierre
sebastien.pierre@...
Send Email
Apr 2, 2003
1:52 pm
851
Hi again! It seems like there is a typo in the `Embedding' section of IoVM manual: <snip> #include "IoState.h" void MyPrint(void *state, char *s) { printf(s);...
Sebastien Pierre
sebastien.pierre@...
Send Email
Apr 2, 2003
2:43 pm
852
... I like this very much. (Sorry for the delay.) /P. -- Peter Lindberg Computer Programmer, Oops AB, Sweden http://oops.se/ http://tesugen.com/...
Peter Lindberg
tesugen
Offline Send Email
Apr 2, 2003
3:11 pm
853
Hi all, I successfully applied Steve advices on using my own block invocation operation to make Io use Piranhas execution service (which is a simple callbacks...
Sebastien Pierre
sebastien.pierre@...
Send Email
Apr 2, 2003
3:15 pm
854
... Yes, you're right. I need to clean that up at some point. Thanks for the reminder. Cheers, Steve Io, a small language: http://www.iolanguage.com/...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 2, 2003
8:15 pm
855
Sebastien, ... Thanks for the fix! ... Oops, I got a bit aggressive with search&replace. That should really be "IoState_printCallback_" in IoState. I'll fix...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 2, 2003
8:20 pm
856
... I'm not sure what you mean by atomic here, but loops don't involve calling a block unless you do so yourself. ... I'd recommend taking any code you'd have...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 3, 2003
10:27 am
857
On Thu, 3 Apr 2003 02:27:19 -0800 ... If I take the concurrency example, we have this: obj1 = Object clone obj1 test = block(for(n, 1, 3, n print; yield)) obj2...
Sebastien Pierre
sebastien.pierre@...
Send Email
Apr 3, 2003
10:46 am
858
... My mistake: foo = block(i print) for(i, 1, 10, foo) Of course you need to be careful when you assign variables. Cheers, Steve Io, a small language:...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 3, 2003
10:59 am
859
On Thu, 3 Apr 2003 02:59:57 -0800 ... I get a core dump that I am unable to debug: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread...
Sebastien Pierre
sebastien.pierre@...
Send Email
Apr 3, 2003
12:15 pm
860
... I don't get a crash. Could it be happening in your callback? ... The yield method isn't a Block, it's a CFunction. Cheers, Steve Io, a small language:...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 3, 2003
7:56 pm
861
Below I've included some of my experiments with implementing mix-in's in Io. Suggestions for code or design improvements would be appreciated. // An 'extends'...
kgrgreer
Offline Send Email
Apr 5, 2003
1:05 am
862
http://www.iolanguage.com/size.html Cheers, Steve Io, a small language: http://www.iolanguage.com/...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 5, 2003
3:56 am
863
... Hey Kevin, Looks good. Do you mind if I add it as example code in the Io release? With a small change, it seems it could handle "aspects" as well. Cheers, ...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 5, 2003
5:29 am
864
... The correct URL is: http://www.iolanguage.com/comparisons/size.html...
kgrgreer
Offline Send Email
Apr 5, 2003
3:18 pm
865
... No, I don't mind at all. You can use anything I post to the message board. ... Really? How would you do that? I would have thought that for aspects you...
kgrgreer
Offline Send Email
Apr 5, 2003
4:59 pm
866
I don't really know what to call things in Io. The normal nomenclature that I use for conventional class-based OO languages just doesn't apply to Io....
kgrgreer
Offline Send Email
Apr 5, 2003
5:01 pm
867
// This experiment tests Io's ability to support Objects with dynamic 'parent's. A = Object clone do ( foo = "A" ) B = Object clone do ( foo = "B" ) A foo...
kgrgreer
Offline Send Email
Apr 5, 2003
6:35 pm
868
... classes = prototypes (or "protos") objects = objects subclasses = sub-protos? class methods/variables = shared method/variables Cheers, Steve Io, a small...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 5, 2003
7:42 pm
869
... Currently, inheritance lookups use getSlot(), so they don't activate blocks. So when c follows it's parent slot to lookup foo it finds a block and ignores...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 5, 2003
8:11 pm
870
In Java it is a common pattern to have to have "Properties": values of an Object with getter and setter methods. ex. protected String name_; public String...
kgrgreer
Offline Send Email
Apr 6, 2003
12:51 am
871
I think it would be more fair to exclude comments. If source is used for documentation, there will be a *lot* of comments in there. I know it's more of a...
Mike
mike_ekim
Offline Send Email
Apr 6, 2003
5:06 am
872
... Would this be kind of like Self where there is no distinction between invokation and value? Mike ... activate ... overhead...
Mike
mike_ekim
Offline Send Email
Apr 6, 2003
5:14 am
873
... I agree but I don't know of a utility to do that. Do you? Cheers, Steve Io, a small language: http://www.iolanguage.com/...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 6, 2003
5:21 am
874
What about using <- for set()? This is how you assign a value to a number 'object' without creating a new instance. e.i.: x = 10 x <- 20 The <- message would...
Mike
mike_ekim
Offline Send Email
Apr 6, 2003
5:21 am
875
... Yes, though I'm not sure Self does that for lookups. Cheers, Steve Io, a small language: http://www.iolanguage.com/...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 6, 2003
5:22 am
876
... activate ... overhead ... Hi Steve, The reason that I was trying to create dynamic parent's (or proto's) is so that I could create support for 'private'...
kgrgreer
Offline Send Email
Apr 6, 2003
3:19 pm
Messages 847 - 876 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