Search the web
Sign In
New User? Sign Up
iolanguage · Io
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 3218 - 3247 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3218
In response to a Python vs. Io thread I started at comp.lang.python, someone found a segfault when writing 2^1000 and concluded that the language was useless...
Daniel Ehrenberg
littledanehren
Offline Send Email
Feb 2, 2004
1:06 am
3219
... [snip] Intresting. I'm diving into Io source for other reasons so I'll look into it more. The issue goes away when running the interpreter in GDB so it's...
Austin K. Kurahone
akurahone
Offline Send Email
Feb 2, 2004
4:54 am
3220
... It bugged me so I looked into this first. It base/ByteArray.c ByteArray_fromVargs_ the code is using sprintf to convert data. The problem is that the...
Austin K. Kurahone
akurahone
Offline Send Email
Feb 2, 2004
5:12 am
3221
... Thanks Austin (and thanks to Dan for reporting the bug). I've added a fix. I couldn't find a BSD or similarly licensed version of snprintf(), so I did the...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 2, 2004
5:49 am
3222
... Dan, If you can get a feel from your discussion about what might make Io more attractive to Python users, please let me know. Cheers, -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 2, 2004
6:05 am
3223
... [snip] Oops, forgot that snprintf was a BSDism. Looks good, I take it that for the "f" case you're using the buffer on the heap? Io treats really large...
Austin K. Kurahone
akurahone
Offline Send Email
Feb 2, 2004
6:11 am
3224
... Oh good - I'll poke around the BSD source then. The only versions I saw at first glance were GPLed. ... Yup. -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 2, 2004
6:23 am
3225
All, Attached is a patch that gets IoVM to compile and mostly work on IRIX 6.3 Changes implemented: * Added test for IRIX to Scheduler.c (Existing jmpbuf...
Austin K. Kurahone
akurahone
Offline Send Email
Feb 2, 2004
9:39 am
3226
... io has the better object system Klaus Schilling...
pessolo@...
pessoa22000
Offline Send Email
Feb 2, 2004
11:57 am
3227
... 6.3 Thanks! I'll add your changes. ... I don't see this. The ByteArray and String calls are set to not copy, so the String that is created should free the...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 2, 2004
3:34 pm
3228
On Mon, 2 Feb 2004, Steve Dekorte wrote: [snip] ... Doh, missed that. Sorry about that. -- Kentaro A. Kurahone SIGUSR1 Research and Development "There's...
Austin K. Kurahone
akurahone
Offline Send Email
Feb 2, 2004
6:16 pm
3229
... Here are some of the things that people didn't like about Io: *Not bug-free enough *Not enough library bindings and documentation *Too flexible *If they...
Daniel Ehrenberg
littledanehren
Offline Send Email
Feb 2, 2004
9:20 pm
3230
... There's a list() method on Object for lists: list(1,2,3) would it be acceptable to do the same for Map? map(x=1, y=2) Which could be implemented like: ...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 2, 2004
11:55 pm
3231
... I agree. But we'll get there. :-) ... This seems to be a common criticism of new languages. FORTRAN programmers said this about C, and C++ and Java...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 3, 2004
12:26 am
3232
... I know. Actually, I actually made a version of that myself. But it's still not as efficient as the builtin syntax. Daniel Ehrenberg ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Feb 3, 2004
1:39 am
3233
... If we implemented the above in C (which is easy), it should be plenty fast. -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 3, 2004
2:00 am
3234
... I mean efficient to use, not fast. It's much more verbose to write list(3) than [3]. Daniel Ehrenberg __________________________________ Do you Yahoo!? ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Feb 3, 2004
2:53 am
3235
... I'd like to comment on a few of those I find interesting, since you can pretty much summarize most the the rest as Io not being like python (syntax-wise or...
Eric GAUDET
titousensei
Online Now Send Email
Feb 3, 2004
5:24 am
3236
On Mon, 2 Feb 2004, Eric GAUDET wrote: [snip] ... Hmmm. The documentation and library bindings will improve over time. I'm still not entirely happy with the...
Austin K. Kurahone
akurahone
Offline Send Email
Feb 3, 2004
7:07 am
3237
... It used to me possible before mutable objects and the Locals object were introduced. I think this is a really interesting and important issue for languages...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 3, 2004
4:48 pm
3238
Given that Io's syntax seems to exist somewhere between LISP (just parenthesized lists) and Algol (different syntaxes for different semantic structures), would...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 3, 2004
5:18 pm
3239
... Lua doesn't have a real object model, and functions are not values, so you cannot redefine basic behavior. ... When embedding Lua, you create an...
Eric Gaudet
titousensei
Online Now Send Email
Feb 3, 2004
6:24 pm
3240
... or ... I'm no theory expert, but I'd say Algol, because something like "list (1,2,3)" always has the semantic action of constructing a list, and isn't just...
Chuck Adams
cja987
Offline Send Email
Feb 3, 2004
6:31 pm
3241
... How are Io globals (I assume you mean things in the Lobby) less accessable? All you have to do is prefix the variable name with Lobby. I suppose this could...
Daniel Ehrenberg
littledanehren
Offline Send Email
Feb 3, 2004
6:40 pm
3242
... I'm new to Io. I love the language, but I find this part quirky. Can anyone give me a refresher on the origins of this? For background, I'm an "everyday...
tlack_
Offline Send Email
Feb 3, 2004
6:47 pm
3243
... Basically, you cannot have a language that has both = doing creation and updates, and also implicit scope (local or self). We talked a lot about the...
Eric Gaudet
titousensei
Online Now Send Email
Feb 3, 2004
7:00 pm
3244
... It allows us to avoid having to declare locals. -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 3, 2004
7:00 pm
3245
I was getting some errors "make"ing the latest IoServer release under XP + Cygwin. The pcre library wouldn't link, and applying the following diff seemed to...
tlack_
Offline Send Email
Feb 3, 2004
7:01 pm
3246
... under ... to ... text ... Nope, you're not crazy, though it did drive me crazy to the point of giving up on it. It looks like PCRE itself has a wonky...
Chuck Adams
cja987
Offline Send Email
Feb 3, 2004
8:46 pm
3247
... For sandboxing in prototype-based OO, ColdC gives a good example. Klaus Schilling...
pessolo@...
pessoa22000
Offline Send Email
Feb 3, 2004
9:22 pm
Messages 3218 - 3247 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