Search the web
Sign In
New User? Sign Up
langsmiths · Language Smiths
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2444 - 2473 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2444
I've always admired the language Dylan, and now that OpenDylan is available I've been studying it in a bit more depth. Multi-methods are something I'd really...
Mike
mike_ekim
Offline Send Email
Oct 11, 2005
9:35 pm
2445
... Yes, in Dylan you can 'rename' functions imported from modules. So you would rename 'do-something' to 'foo-do-something', and from another module, it's...
Chris Double
doublecnz
Offline Send Email
Oct 11, 2005
9:42 pm
2446
... I thought so. After a bit of thinking, if you dispatch on the class first, then on the arguments, you can achieve true OO-dispatching along with ...
Mike Austin
mike_ekim
Offline Send Email
Oct 12, 2005
12:02 am
2447
... What are you talking about, true OO language? What is it, and why do we care? I don't think dispatch on the first argument makes a language any truer than...
Daniel Ehrenberg
littledanehren
Offline Send Email
Oct 12, 2005
12:18 am
2448
... I'm sorry if I'm sounding like an oo purist. I'm not, I don't even like the term anymore really, and as you suggest, it doesn't mean the same thing to all...
Mike Austin
mike_ekim
Offline Send Email
Oct 12, 2005
2:56 am
2449
... Hey Chris, do you know how to concatinate macro pattern variables? Below, ?class and ?name should be combined into one identifier: define method ?class ##...
Mike Austin
mike_ekim
Offline Send Email
Oct 12, 2005
7:50 pm
2450
... I don't have a running Dylan system where I am to test but if ?class ## ?name doesn't work, how about ?#"class" ## ?name. The ?#"class" turns 'class' into...
Chris Double
doublecnz
Offline Send Email
Oct 12, 2005
9:44 pm
2451
Kokogut is a compiler of the Kogut language, written in itself. http://kokogut.sourceforge.net/ New in Kokogut-0.6.0 (29 October 2005), a release with...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Oct 29, 2005
3:17 pm
2452
I've been developing an OO language (called Lyken) that is similar in many ways to Python, but one of its goals is to make integrating C code simple, using...
Jason Evans
jasonoevans
Offline Send Email
Oct 29, 2005
6:33 pm
2453
Hi, Jason ... The previous incarnation of my language Pluk uses this approach, its pretty easy way of creating something that works. Especially the...
Bart van der Werf
bluelive@...
Send Email
Oct 29, 2005
7:35 pm
2454
... I've been doing this for my languages. I started out with a C++-front approach, but evolved toward using straight C. ... The C-front approach seems to me...
Steve Folta
stevefolta
Offline Send Email
Oct 29, 2005
11:11 pm
2455
... Is there a URL for Trylon? Btw gmail ads found another C compiler that may be interesting. It supports 4 different processors: ...
Chuck Esterbrook
chuckesterbrook
Offline Send Email
Oct 29, 2005
11:47 pm
2456
... Not yet. Someday I've got to write the manual......
Steve Folta
stevefolta
Offline Send Email
Oct 30, 2005
12:58 am
2457
... I did some experimentation with tcc a few months ago (on RHEL WS 4, x86), and found that even something as simple as a hello world program would segfault....
Jason Evans
jasonoevans
Offline Send Email
Oct 30, 2005
8:47 pm
2458
... It mostly worked fine for me (on Gentoo), although I think I've seen the compiler seqfault on syntax errors sometimes (instead of printing an error...
Steve Folta
stevefolta
Offline Send Email
Oct 30, 2005
9:08 pm
2459
... TCC is fairly reliable, but it probably has problems with GCC >3.[34]. There was a fix checked in (yesterday) for an ELF loader problem. Overall, TCC is...
Kyle Hayes
kyle@...
Send Email
Oct 31, 2005
2:28 pm
2460
... SmartEiffel does that and they are pretty successfull. ... -- Mon p'tit blog - http://david.jobet.free.fr Nosica - http://www.nosica.net - natural...
David Jobet
cagouille_ra...
Offline Send Email
Oct 31, 2005
7:15 pm
2461
http://web.cs.mun.ca/~ulf/pld/ -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 5, 2005
12:06 am
2462
Kokogut is a compiler of the Kogut language, written in itself. http://kokogut.sourceforge.net/ New in Kokogut-0.6.1 (25 January 2006), a release with readline...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Jan 25, 2006
5:21 pm
2463
Hi, I'm planning to implement arbitrary precision integers into my language. I explored several libraries implementing such functionality, but I cannot decide,...
Rudla Kudla
rudlakudla
Offline Send Email
Feb 15, 2006
8:00 am
2464
... Hi Rudla, Which ones are you currently looking at and what do you think of them? I looked into it a while ago and think I only found the GNU one to be to...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 15, 2006
8:08 am
2465
... GMP: Claims to be the fastest one. I had problems with compiling on Windows platforms using VS 6.0 etc. (the platform I'm currently using) The code looks...
Rudla Kudla
rudlakudla
Offline Send Email
Feb 15, 2006
11:22 am
2466
... Why are people so fascinated with arbitrary precision integers? Please don't take this as a criticism; I'm genuinely curious. Do you ever overflow 32 bit...
Chuck Esterbrook
chuckesterbrook
Offline Send Email
Feb 15, 2006
3:27 pm
2467
... GMP. ... Performance, portability, open source. ... Not to my knowledge. You can build such a library on top of GMP however. I'd recommend using the...
Brian Hurt
bhurt42
Offline Send Email
Feb 15, 2006
3:43 pm
2468
... GMP is LGPL, which means you can link closed source projects to it. That's the difference between the normal GPL and the LGPL. Brian...
Brian Hurt
bhurt42
Offline Send Email
Feb 15, 2006
3:49 pm
2469
Another alternative is Scheme48's bignum library, because it's reasonably fast and under a very free license. You can use it for a closed-source project, and...
Daniel Ehrenberg
littledanehren
Offline Send Email
Feb 15, 2006
4:04 pm
2470
... My guess is that people want to never have to worry about the issue again, under any circumstances. -- Randall Randall <randall@...> "If we...
Randall Randall
randallsquared
Offline Send Email
Feb 16, 2006
12:26 pm
2471
... 18 quintillion integers ought to be enough for anyone! :-)...
James McCartney
james_e_mcca...
Offline Send Email
Feb 21, 2006
6:25 pm
2472
... Interestingly there's been a discussion on caml-list about using 64 bit ints for doing money. With precision to the 1/1000th and using Vietnamese Dongs...
Matthew O'Connor
angagon
Offline Send Email
Mar 9, 2006
12:50 pm
2473
... According to http://en.wikipedia.org/wiki/Vietnamese_dong: As of November 9, 2005, the US dollar was worth 15,897 đồng. Given the size of the world's...
Chuck Esterbrook
chuckesterbrook
Offline Send Email
Mar 9, 2006
5:10 pm
Messages 2444 - 2473 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help