... Well, that's the way to tell the primitive type, but not the proto-type. proto would be better, but I'm not sure about a good way to implement that yet. I...
... While it ... from ... I like Io the way that it is now. You could easily implement an image based system in Io but the language itself doesn't need to...
What should the behavior of asString with arguments be? I'm thinking a single optional argument thats a number for the precision, where 0 precision means no...
... IMO, asString should consistently not accept any arguments and work the same way regardless of object type. In the case of a floating point number, it...
... there are two different kindes of conversion from numbers (and other simple value-types) to strings: the one kind is where you want to convert a number to...
Daniel Wunsch
the.gray@...
Nov 1, 2003 11:21 pm
2595
... I believe there may be a simple and clean way to fix the whole paren thing. When I get back from vacation next Thursday i'll try implementing it. Cross...
... For my own use, the date versioning is simpler and more effective than conventional numbering systems. But for some people, and for some systems that track...
... I think this is bigger than that. I think there are times when you want to create a string representation of an object (Java's toString()) for logging or...
Thanks. I've downloaded and make, run. ... I checked that it passed a test. ... It still don't work. running IoVM/_tests/examples/Activate.io. inc(x) still...
... Oops. I had commented the line out for performance testing. In IoObject.c uncomment: tag->activateFunc = (TagActivateFunc *)IoObject_activateFunc; ... ...
Hi all. I wrote another implementation of CLI_input() function(in IoVM/base/CLI.c). This version can recieve one or more lines input (with read-eval-print ...
... I think I've been putting it off because something about := doesn't feel right to me. Kentaro mentioned the other day (perhaps it's been mentioned before)...
-- En reponse de "Re: [Io] Slot creation, assignment" de Steve Dekorte, le ... I've been in favor of := so far, but I also like this idea. I assume that in the...
... Ugh. If I understand this, it would mean that you would have to declare all locals at the top of a method, rather than where they first occur. If you go...
... Here's an example implementation of this in Io: Object finalize = method( thisMessage argsEvaluatedIn(sender) sender setSlot = method( slotName =...
... echo "nothing to configure" nothing to configure When I make, the final three lines I get are: ld: Undefined symbols: _IoAudioInit make[1]: *** [all] Error...
Hi Steve, I just found a bug with the "activate" method. Try this: Pouet = Object clone Pouet activate = method( self clone ) And now type this Pouet() You...
... Duh. I realized after I sent this that it is obviously optional, because it only kicks in if you finalize an object. However, I think the real point I was...
... My problem is that if you are used to C++/Java/Ruby, and if there is a member variable named a, and not a local by the same name, then you will expect...
... Perhaps "freeze" would be a better name than "finalize". In Java the finalize method is called after an Object is garbage collected. The feature that...