Search the web
Sign In
New User? Sign Up
concatenative · Discuss the concatenative variety of computer languages: Joy, Forth, Postscript
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2960 - 2989 of 4113   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2960
I've recently started a blog explaining the details of a new concatenative language Enchilada. Here are some statements to give you a taste of Enchilada: -...
r_v_dalen
Offline Send Email
Sep 1, 2006
7:46 am
2961
The examples of concatenative languages such as joy, forth, postscript, and factor, are all based on stack machines. Are there concatenative languages that is...
Jianying Ji
jianyingj
Offline Send Email
Sep 2, 2006
6:29 am
2962
... Well, there is a quiet little implementation flourish within the bowels of Joy that leaves me hesitant to describe it as a pure stack machine as a...
John Carter
refactored
Offline Send Email
Sep 4, 2006
12:06 am
2963
... I'm struggling my way through it. Looks nice and original. Fun reading. ... There was a paper on the basic primitives of Joy... Let's see, who wrote...
William Tanksley, Jr
wtanksle
Offline Send Email
Sep 4, 2006
4:19 am
2964
... Thanks. Hopefully I didn't leave anything to trip over ;). ... Yes, I've read that paper (I've been lurking the concatenative group for almost two years,...
Robbert van Dalen
r_v_dalen
Offline Send Email
Sep 4, 2006
9:09 pm
2965
... I can't tell -- I'm still stumbling over my own shoelaces. ... Oh, I agree. As you very well know, I'm big on efficiency :-). Now that you've mentioned...
William Tanksley, Jr
wtanksle
Offline Send Email
Sep 5, 2006
5:58 pm
2966
... Yeah I know what you mean. I'm still waiting for the school bell to ring so I can finally play outside -not to be bothered with mundane work. ... Right,...
Robbert van Dalen
r_v_dalen
Offline Send Email
Sep 5, 2006
7:20 pm
2967
I'm wondering how many concatenative languages are lazily evaluated. I'm aware that Joy can be lazily evaluated, although I believe that the C implementation...
r_v_dalen
Offline Send Email
Sep 9, 2006
11:33 am
2968
... There is a lazy-lists library in Factor and the parser combinators code relies on it a lot. A parser combinator returns a 'lazy list of successes' as the...
Chris Double
doublecnz
Offline Send Email
Sep 9, 2006
11:57 am
2969
APL, J, and K are strict. i'm not sure what you mean by saying that some data structures in APL are lazy. SLACK is a lazy implementation of K, based on SASL....
stevan apter
sa@...
Send Email
Sep 9, 2006
1:27 pm
2970
... Just copied this from wikipedia: "A widely cited paper "The APL Machine" perpetuated the myth that APL made pervasive use of lazy evaluation where...
Robbert van Dalen
r_v_dalen
Offline Send Email
Sep 9, 2006
3:17 pm
2971
... Lazy data structures (that is, data structures that contain code that generate later values) are easy in any language. Actual lazy evaluation is...
William Tanksley, Jr
wtanksle
Offline Send Email
Sep 9, 2006
10:18 pm
2972
However every term in a concatenative language can be viewed as a function which takes a single function (a stack) and outputs a single value (another stack). ...
Christopher Diggins
cdiggins.geo
Offline Send Email
Sep 9, 2006
10:37 pm
2973
... I can see that being acceptable, yes. This is one of the things I've been trying to figure out to see if I can think of a way to control the cartesian...
William Tanksley, Jr
wtanksle
Offline Send Email
Sep 9, 2006
11:19 pm
2974
... Billy, I also agree with you and Christopher. I always think of lazy evalutation to be some kind of stream. Every time you get an element from a stream,...
r_v_dalen
Offline Send Email
Sep 11, 2006
2:32 pm
2975
A preview of the new version of the Cat programming language is now available at http://www.cat-language.com . For those who don't know or remember, Cat is a...
Christopher Diggins
cdiggins.geo
Offline Send Email
Sep 16, 2006
9:44 pm
2976
robbert - can you give us an update on where you're at with enchilada? i notice that your blog hasn't been updated in a while. best sa [Non-text portions of...
stevan apter
sa@...
Send Email
Sep 26, 2006
10:48 pm
2977
Hi Stevan, Thanks for pushing me a little bit ;) I've updated my blog just now. Although I was keen on doing a full implementation, I 'released' a early...
r_v_dalen
Offline Send Email
Sep 27, 2006
1:08 pm
2978
There has been a new version of Cat released into the public domain at http://www.cat-language.com . This version introduces a lot of bug fixes, and is...
Christopher Diggins
cdiggins.geo
Offline Send Email
Sep 29, 2006
6:58 am
2979
Hi Christopher, I've just downloaded your source code. I can't execute the executable or compile the source but I can see where you're heading to: everything...
Robbert van Dalen
r_v_dalen
Offline Send Email
Sep 29, 2006
9:49 pm
2980
I'm sorry that the executable and source code didn't work for you (is it because you don't have C#, and the .NET framework installed?). I appreciate the...
Christopher Diggins
cdiggins.geo
Offline Send Email
Sep 30, 2006
4:55 am
2981
... I'm not him, but if I were I'd probably answer "because it's an interesting problem." :-) IMO typeless languages are fun and easy to work with, but typed ...
William Tanksley, Jr
wtanksle
Offline Send Email
Sep 30, 2006
6:03 am
2982
I just released a new update of Cat ... I just found and killed a couple of new bugs. Sorry to anyone who downloaded it. I've also written a bit about type...
Christopher Diggins
cdiggins.geo
Offline Send Email
Sep 30, 2006
6:18 am
2983
... That definitely plays into it. :-) ... My view on types is that it makes it easier to 1) verify that a program does what you expect 2) tell someone what it...
Christopher Diggins
cdiggins.geo
Offline Send Email
Sep 30, 2006
6:43 am
2984
Somehow my post got lost. Hopefully it will not appear twice. ... Yes, types can help understand programs in a declaritive manner. But I think the most...
Robbert van Dalen
r_v_dalen
Offline Send Email
Sep 30, 2006
4:46 pm
2985
... Yes, types can help understand programs in a declaritive manner. But I think the most (interesting but complex) problems are encounted at runtime. Examples...
Robbert van Dalen
r_v_dalen
Offline Send Email
Oct 1, 2006
12:31 am
2986
... From: "Robbert van Dalen" <r_v_dalen@...> To: <concatenative@yahoogroups.com> Sent: Saturday, September 30, 2006 10:50 AM Subject: Re: [stack] Cat...
stevan apter
sa@...
Send Email
Oct 1, 2006
12:31 am
2987
... For guaranteed time/memory usage, take a look at something like the statically typed Hume language... http://www-fp.dcs.st-and.ac.uk/hume/ You might like...
Greg Buchholz
sleepingsqui...
Offline Send Email
Oct 1, 2006
12:32 am
2988
... Yeah, I'm a mac user. But I can read the source because it's very clear (trying to execute it in my head). Just read your blog - you have approached the ...
Robbert van Dalen
r_v_dalen
Offline Send Email
Oct 1, 2006
1:00 am
2989
This discussion on static typing and type inference brings up (in an indirect way) a question that I've been itching to ask for some time. Haskell is a...
Rodney D Price
rodneydelmar...
Offline Send Email
Oct 2, 2006
6:32 pm
Messages 2960 - 2989 of 4113   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