... I was hoping that you weren't, but I wouldn't put it past some people. On the other hand, there are chips out there that do this sort of thing for other...
... Actually, the mask only needs to tell it how many low bits should be non-zero in the output and the rest just needs to to a good job of mixing the bits of...
... Sure. Good idea. I think (not sure) that this is not far off the level at which LISP machines worked. They didn't really implement a VM either (I think)....
... Oh I only do that with setSlot()ing a method, and sometimes with do(). It would be nice if I could say "Number \+ = method(...)" or something but it's not...
... Yeah, same. Initially I was thinking it would be nice if you could quote it similar to way the way you can get around operators in Prolog, but that really...
... It took me a while to figure it out, too; the terminology can be confusing. Maybe an example would help: ob := Object clone ob meth := method(a,b,print) ...
Has this gone someplace else? It's the link through from io|docs|manual|english|vm http://www.iolanguage.com/source/Io/IoVM/_docs/index.html Michael...
While thinking about ways to improve the expression evaluator, a simple way to implement a lexical do occurred to me: Object lexicalDo := method(thisMessage...
Available here: http://rtfm.insomnia.org/~qg/iogtk/ Based on a DynLib extension I've written that lets you call arbitary functions exported from shared...
After some discussions on Irc I posted a few notes on my wiki, please review them and add comments: http://www.pipapo.org/iowiki/NewInfrastructure Some Notes: ...
Christian Thaeter
chth@...
Sep 8, 2005 11:34 am
6928
In the current version of Io (20050830), Boxes with negative height or width don't contain any Points. At least that's what I conclude from this: Io> Box clone...
... Here it is: <http://folk.uio.no/jkleiser/io/IoBox.c> ... a fix to allow Boxes with negative width, height, or depth to contain Points. In addition to the...
I thought there was once a width() or pad() type of function in Io to right align numbers when converting to a string, with an optional pad character. Am I...
... I've updated the page to now include the code for my debugger ported to GTK+. To get this to work I had to disable a check in IoObject_forward.. if (10000...
First the problem: If I have a script that does the following ... b := Box clone set(vector(0, 0), vector(6, 6)) c := b containsPoint(vector(1, 1)) v :=...
I've added an object browser app to the GTK+ bindings page. http://rtfm.insomnia.org/~qg/iogtk/ I havn't connected any action to double click.. I figure...
... Yep, you need to apply my latest dynlib-extension.diff patch.. I turn off this check. I don't know why it fires.. I've asked Steve, no response as yet. ...
http://www.iolanguage.com/downloads/ Release 2005 09 10 - updates ============================ - moved implementation of ? to Io - VM autodocs now auto include...
Somehow SkipDBRecord->key gets set to "1" instead of a ByteArray pointer when Continuation.io exits. This is as far as I've debuged, Steve can you look at it?...
It's basically the mapInPlace source, but uses and returns a new list. I can't understand why it hasn't been added. IoList *IoList_proto(void *state) { [...] ...
... I don't get any errors on OSX either on the command line or via gdb: % ./io /Users/steve/IoProject/Io/IoVM/_tests/Concurrency/Continuation.io 1 - in main,...