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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 2429 - 2458 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2429
http://www.ffconsultancy.com/free/ray_tracer/code/1/ray.ml I thought I had a grasp on Haskell/ML/OCaml type languages, but this is too much. Or is it just the...
Mike
mike_ekim
Offline Send Email
Aug 5, 2005
5:32 am
2430
It's just that there's no comments or vertical whitespace. The Java and C++ version looks similarly strange....
Steven Shaw
steshaw
Offline Send Email
Aug 5, 2005
11:49 am
2431
Umm... that looks pretty normal to me. The only weirdness that I can see is (fun t2 -> if t2 < 0. then infinity else ((fun t1 -> if t1 > 0. then t1 else t2) (b...
Daniel Ehrenberg
littledanehren
Offline Send Email
Aug 5, 2005
2:55 pm
2432
... The spacing could be better, and some comments might be nice, but it looks like reasonably straightforward Ocaml to me. The reason for the lack of comments...
Brian Hurt
bhurt42
Offline Send Email
Aug 6, 2005
12:36 am
2433
... I forgot to mention. Just because you find that particular file difficult to read, even if all code were written like that, doesn't at all mean that the...
Daniel Ehrenberg
littledanehren
Offline Send Email
Aug 6, 2005
1:02 am
2434
... I see your point, though the same argument could also be used in support of languages such as this one: http://www.muppetlabs.com/~breadbox/bf/ It seems to...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 6, 2005
4:08 am
2435
... Ahh, someone formatted it. Now I can read it. ...
Mike Austin
mike_ekim
Offline Send Email
Aug 6, 2005
6:38 am
2436
... Well, no, because languages like BF (I can't type it out since my grandparents are right here), Befunge, and Unlambda have a huge flaw: they don't offer...
Daniel Ehrenberg
littledanehren
Offline Send Email
Aug 6, 2005
1:57 pm
2437
... Umm... that's a different piece of code, and it's written really weirdly, using lists where you should use a structure or algebraic datatype. Daniel...
Daniel Ehrenberg
littledanehren
Offline Send Email
Aug 6, 2005
4:44 pm
2438
... But the question here is about syntax, not semantics. ... I suggest checking out Noam Chomsky's work on linguistics. It's my impression that it is well...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 6, 2005
6:54 pm
2439
... The question was about comprehending the program, which is both syntax and semantics. My argument is that syntax is superficial and with a moderate amount...
Daniel Ehrenberg
littledanehren
Offline Send Email
Aug 6, 2005
7:46 pm
2440
... We might have to wait a bit before we get enough generations of populations of Perl and Smalltalk programmers to see what genetic effect it has :), but I...
Chandrasekhar Ramakri...
cramakri
Offline Send Email
Aug 7, 2005
5:07 pm
2441
... MacGyver can also pick a lock with a light bulb and some pocket lint. I think he would nontheless be better served by tools appropriate for the job. :) If...
Chandrasekhar Ramakri...
cramakri
Offline Send Email
Aug 7, 2005
5:29 pm
2442
... To be clear, my suggestion was that people may be choosing languages that fit how their mind works, not that people whose minds work like the available...
Steve Dekorte
stevedekorte
Offline Send Email
Aug 7, 2005
6:29 pm
2443
... IIRC, the difference between those two notations was something about Newtonian notation not allowing as many different variable names (or something like...
Daniel Ehrenberg
littledanehren
Offline Send Email
Aug 8, 2005
4:20 pm
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
Messages 2429 - 2458 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