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.

Messages

  Messages Help
Advanced
Messages 44 - 74 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
44
Beta Release 2002 06 02 ======================= - speedups - removed unneeded stack retains - inlined Object_perform - replaced List with Stack were...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 3, 2002
12:56 am
45
Here are some timings of tests from: "The Great Computer Language Shootout" http://www.bagley.org/~doug/shootout/ run on my 450Mhz G4. (Python 2.0, Lua 4.0, Io...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 3, 2002
12:58 am
46
Compared with Lua, Python, Ruby and Perl http://www.dekorte.com/Software/C/Io/performance.html...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 3, 2002
8:32 pm
48
this is just a test - sorry to bother everyone...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 28, 2002
7:37 am
49
Beta Release 2002 07 03 ======================= - multi-state safe (no mutable globals) - moved most defined functions to inlined(now not entirely ANSI C) -...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 3, 2002
8:18 am
50
Beta Release 2002 07 04 ======================= - added Object perform(methodName, arg1, ...) method - simple message stack traces working...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 4, 2002
10:51 pm
51
Beta Release 2002 08 11 ======================= - added concurrency via Actors that use coroutines Here's the description from the docs: Concurrency Io uses...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 12, 2002
1:50 am
52
Is this the appropriate place for bug reports, etc? I'm running Debian Testing/sarge on an iBook2. ... (zbir@gibbon ~) $ io Io>words = List clone <IoList...
Zachery Bir
zacherybir
Offline Send Email
Aug 14, 2002
6:35 pm
53
... Hi Zac, Thanks for the bug report. I was able to replicate the seg fault on OSX but there's definitely a sort bug. I've fixed that and I'm putting out a ...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 14, 2002
9:47 pm
54
Beta Release 2002 08 14 ======================= - added bitwise Number operations - added LinkedList primitive - fixed List sort bug...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 14, 2002
9:48 pm
55
... Oops - that should read "I wasn't able". Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 14, 2002
9:49 pm
56
Beta Release 2002 08 17 ======================= - added addon libs: - Directory (currently for unix only) - XML parser using expat - MD5 digest - Blowfish...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 18, 2002
6:57 am
57
... Steve could you explain how this snippet of Io works? I'm guessing it evalutates like ((_message code) print) but I don't know what _message object or code...
Steven Shaw
steshaw
Offline Send Email
Aug 19, 2002
11:54 am
58
Hi Steven, ... Sure, _message is an as yet undocumented feature. When a block is activated it creates a locals object and puts a few default slots in it. They...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 19, 2002
12:47 pm
59
... am ... appreciate ... so ... other ... direct ... but ... to ... calls ... the C ... From what I've seen with Stackless Python - it's exactly the opposite...
steshaw
Offline Send Email
Aug 19, 2002
1:05 pm
60
... Yes, you're right. I didn't understand the common usage of the term at the time. I've removed "stackless" from the description of Io. The justification of...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 19, 2002
2:46 pm
61
From: "Steve Dekorte" <steve@...> ... Yeah, I know that you can affect the stack size with ulimit. I think you can set the stack size of a thread when...
Steven Shaw
steshaw
Offline Send Email
Aug 19, 2002
4:44 pm
62
... To jump into another peripheral thread: Someone told me that underneath the veneer of Type/Class structure, Python is at heart, a prototype language. Given...
Zachery Bir
zacherybir
Offline Send Email
Aug 19, 2002
5:02 pm
63
From: "Steve Dekorte" <steve@...> ... Hey, so would I but I haven't worked it out yet. May never :-) My project supervisor told me about this problem...
Steven Shaw
steshaw
Offline Send Email
Aug 19, 2002
5:03 pm
64
... Python instances use dictionaries to hold their instance variables(and maybe also their methods) so their structure is modifiable at runtime, which is...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 20, 2002
1:01 am
65
... Yes, Io uses coroutines which only require a few lines of assembly per CPU. Real threads would require a lot more platform specific code. ... The stackless...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 20, 2002
3:58 am
66
Sorry I'm replying to this message again after having a closer look at Io self_replicating-code solution ... The self-replicating code in Io: (_message code)...
steshaw
Offline Send Email
Aug 20, 2002
5:08 am
67
... No, brackets in Io are used for argument lists only. You could do this though: _message() code() print() or: write(_message code) ... That's right. Though...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 20, 2002
9:20 am
68
From: "Steve Dekorte" <steve@...> ... Python supports anonymous functions through lamda. In fact Python's functional features are what led me to study...
Steven Shaw
steshaw
Offline Send Email
Aug 20, 2002
2:57 pm
69
From: "Steve Dekorte" <steve@...> ... Yep. ... That's why I haven't looked closely at this page yet. I didn't want to see any solutions. I'm...
Steven Shaw
steshaw
Offline Send Email
Aug 20, 2002
3:02 pm
70
... Python's lambda isn't a true anonymous function as it has no locals: % python... ... SyntaxError: can't assign to lambda Cheers, Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 20, 2002
3:03 pm
71
... The only cheat comments I remember seeing are one for using the LIST command in BASIC and a C program that read it's source file. Both were considered...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 20, 2002
3:46 pm
72
... From: "Steve Dekorte" <steve@...> To: <iolanguage@yahoogroups.com> Sent: Wednesday, August 21, 2002 1:03 AM Subject: Re: [Io] Re: Some questions ...
Steven Shaw
steshaw
Offline Send Email
Aug 21, 2002
11:47 am
73
... This shows that lambdas can access globals, but not that they have locals. How would you declare "a" in the above example as a local (instead of a global)...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 21, 2002
12:05 pm
74
... Cool. Nice pictures....
Steven Shaw
steshaw
Offline Send Email
Aug 21, 2002
12:20 pm
Messages 44 - 74 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