... 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...
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@...
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...
... 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@...
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@...
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....
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...
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@...
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...
i darcs the sources and build successfully :-) but meet another problem :-( ... io: error while loading shared libraries: libiovmall.so: cannot open shared ...
Haofei
yuesefa@...
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...
... 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 ...
... 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...
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" ...
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)) ) ... ...
... 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...
....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 ... ...
....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 ... ...
... 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"...
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...