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.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 9436 - 9466 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9436
... Is MacPorts/DarwinPorts supposed to be the answer to all those dependsOnLib() lines? I just installed Io-2006-09-29 and DarwinPorts-1.3.2. When I start io...
Jon Kleiser
jon_kleiser
Offline Send Email
Oct 1, 2006
7:30 pm
9437
I apologise in advance for asking what is undoubtedly a daft question... Does Io have constants in the same sense that ruby has constants? Chris...
Chris Roos
chrisjroos@...
Send Email
Oct 2, 2006
6:30 pm
9438
... Hi Chris, You can implement some sort of object freezing in Io (jer did it a while back) but it's not built-in. Did you have a specific need or application...
Steve Dekorte
stevedekorte
Offline Send Email
Oct 2, 2006
8:25 pm
9439
... No specific need or application ;-) I'm basically fumbling my way around ruby. Everytime I find something that I can't do easily, I think of io. This...
Chris Roos
chrisjroos@...
Send Email
Oct 2, 2006
9:01 pm
9440
it seems i have some problem building io on ubuntu here is the message i take from make. ... make[1]: *** [addons] Segmentation fault make[1]: Leaving...
Haofei
yuesefa@...
Send Email
Oct 3, 2006
6:34 pm
9441
... The fix for this problem exists in the Io darcs repository, so until a new release is pushed, perhaps you could do a darcs get and get the repo....
Jeremy Tregunna
jtregunna_io
Offline Send Email
Oct 3, 2006
7:10 pm
9442
Hello, i have successfully built an Io executable for Windows XP, from the most recent sources. I've used Code::Blocks with gcc. All tests performed with...
jnmrtnmarchi
Offline Send Email
Oct 4, 2006
7:07 pm
9443
Failed to build Io on my machine. I am using Ubuntu 6.06. The version of gcc is 4.0.3. Do i have to modify the make file to fit my system or there were other...
Haofei
yuesefa@...
Send Email
Oct 6, 2006
11:43 am
9444
... Io is one of those projects where the main development repository is usually more stable than the latest release. Continuing that thought, there have been...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Oct 6, 2006
2:54 pm
9445
is there a download location?...
oliver oli
oliver.oli@...
Send Email
Oct 6, 2006
4:41 pm
9447
... Cordially,...
jnmrtnmarchi
Offline Send Email
Oct 6, 2006
8:36 pm
9448
i darcs the sources and build successfully :-) but meet another problem :-( ... io: error while loading shared libraries: libiovmall.so: cannot open shared ...
Haofei
yuesefa@...
Send Email
Oct 7, 2006
2:11 am
9449
... I assume you're on Linux since it's the only platform braindead enough to not cache standard lib dirs on bootup. Edit your /etc/ ld.so.conf and add...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Oct 7, 2006
2:28 am
9450
thanks Jeremy! u help me a lot ;-)...
Haofei
yuesefa@...
Send Email
Oct 7, 2006
3:12 am
9451
you can find attached a upx compressed io.exe for win32 built from the most recent source tree. oliver oli <oliver.oli@...> wrote:...
Jean-Marten Marchi
jnmrtnmarchi
Offline Send Email
Oct 7, 2006
7:00 pm
9452
... Would it help if we added something to the install process to warn uses about this? - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Oct 7, 2006
7:24 pm
9453
... Perhaps. -- Jeremy Tregunna jtregunna@......
Jeremy Tregunna
jtregunna_io
Offline Send Email
Oct 7, 2006
7:32 pm
9454
... It would help. One good place to put it would be in the readme.txt file. This would need to be in the section: Building and Installing on Unix/OSX ...
Charles D Hixson
kapistan
Offline Send Email
Oct 7, 2006
7:47 pm
9455
WHERE CAN I GET SOME EXAMPLE CODE.....THAT IMPLEMENTS OBJETC PERSISTENCE....IN IO.... ...THANKS...
ricardolinerotorres
ricardoliner...
Offline Send Email
Oct 8, 2006
11:08 pm
9456
... Currently, Io's persistence system isn't yet completed yet. However, if all you want to do is serialize objects, quite a number of Io objects can be...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Oct 9, 2006
12:15 am
9457
ok..so not all objects can be serialize.... how about the ones i create... like.. person:= Object clone do( name:="max power" age:="55" occupation:="lawyer" ...
ricardolinerotorres
ricardoliner...
Offline Send Email
Oct 9, 2006
5:20 pm
9458
can somebody tell me whats wrong whit this code both files are in the same folder ... a := Object clone do( sayHi :="HI" sayingHi:=method(write(salude)) ) ... ...
ricardolinerotorres
ricardoliner...
Offline Send Email
Oct 9, 2006
6:24 pm
9459
... Hi Ricardo, The first character of a autoimported symbol name has to begin with an uppercase character. - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Oct 9, 2006
7:13 pm
9460
ok..so not all core objects can be serialize.... how about the ones i create?... like.. person:= Object clone do( name:="max power" age:="55" ...
ricardolinerotorres
ricardoliner...
Offline Send Email
Oct 9, 2006
7:32 pm
9461
... You could write a few methods like: Object serialized := method(s, if(s == nil, s := Sequence clone) self slotNames foreach(n, s appendSeq(n, " := ", self...
Steve Dekorte
stevedekorte
Offline Send Email
Oct 9, 2006
8:09 pm
9462
....you showed and example..where you use the serialize method with a slot..but i've tried to do the same and its shows me an exception ..this is my code ... ...
ricardolinerotorres
ricardoliner...
Offline Send Email
Oct 9, 2006
11:37 pm
9463
... Just define a "serialized" method on your object which returns a String containing the code needed to make your object. -- Jeremy Tregunna ...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Oct 10, 2006
7:36 pm
9464
....you showed and example..where you use the serialize method with a slot..but i've tried to do the same and its shows me an exception ..this is my code ... ...
ricardolinerotorres
ricardoliner...
Offline Send Email
Oct 10, 2006
8:15 pm
9465
... What version of Io do you have? My guess is it's ancient -- before the Serialization stuff (which has been in Io now for about 6 months). Io> "foo"...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Oct 10, 2006
8:25 pm
9466
ok...i've downloaded the latest version of Io on http://www.iolanguage.com/downloads/ but know i need some help again do i need cygwin to install Io or...
ricardolinerotorres
ricardoliner...
Offline Send Email
Oct 11, 2006
12:09 am
Messages 9436 - 9466 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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