I've read the wikipedia article on concatenative languages and I am now more confused than I was when I started. :-)
Can someone explain what a concatenative language is in stupid people terms?
|
I've read the wikipedia article on concatenative languages and I am now more confused than I was when I started. :-) Can someone explain what a concatenative language is in stupid people terms?
| |||||||||||||||||
feedback
|
|
To your simple question, here's a subjective and argumentative answer. I looked at the article and several related web pages. The web pages say themselves that there isn't a real theory, so it's no wonder that people are having a hard time coming up with a precise and understandable definition. I would say that at present, it is not useful to classify languages as "concatenative" or "not concatenative". To me it looks like a term that gives Manfred von Thun a place to hang his hat but may not be useful for other programmers. While PostScript and Forth are worth studying, I don't see anything terribly new or interesting in von Thun's Joy programming language. Indeed, if you read Chris Okasaki's paper on Techniques for Embedding Postfix Languages in Haskell you can try out all this stuff in a setting that, relative to Joy, is totally mainstream. So my answer is there's no simple explanation because there's no mature theory underlying the idea of a concatenative language. (As Einstein and Feynman said, if you can't explain your idea to a college freshman, you don't really understand it.) I'll go further and say although studying some of these languages, like FORTH and PostScript, is an excellent use of time, trying to figure out exactly what people mean when they say "concatenative" is probably a waste of your time. | |||||||||||||
feedback
|
|
In normal programming languages, you have variables which can be defined freely and you call methods using these variables as arguments. These are simple to understand but somewhat limited. Often, it is hard to reuse an existing method because you simply can't map the existing variables into the parameters the method needs or the method A calls another method B and A would be perfect for you if you could only replace the call to B with a call to C. Concatenative language use a fixed data structure to save values (usually a stack or a list). There are no variables. This means that many methods and functions have the same "API": They work on something which someone else left on the stack. Plus code itself is thought to be "data", i.e. it is common to write code which can modify itself or which accepts other code as a "parameter" (i.e. as an element on the stack). These attributes make this languages perfect for chaining existing code to create something new. Reuse is built in. You can write a function which accepts a list and a piece of code and calls the code for each item in the list. This will now work on any kind of data as long it's behaves like a list: results from a database, a row of pixels from an image, characters in a string, etc. The biggest problem is that you have no hint what's going on. There are only a couple of data types (list, string, number), so everything gets mapped to that. When you get a piece of data, you usually don't care what it is or where it comes from. But that makes it hard to follow data through the code to see what is happening to it. I believe it takes a certain set of mind to use the languages successfully. They are not for everyone. [EDIT] Forth has some penetration but not that much. You can find PostScript in any modern laser printer. So they are niche languages. From a functional level, they are at par with LISP, C-like languages and SQL: All of them are Turing Complete, so you can compute anything. It's just a matter of how much code you have to write. Some things are more simple in LISP, some are more simple in C, some are more simple in query languages. The question which is "better" is futile unless you have a context. | |||||||||||||||||
feedback
|
|
After reading http://concatenative.org/wiki/view/Concatenative%20language and drawing on what little I remember of fiddling around with Forth as a teenager, I believe that the key thing about concatenative programming has to do with:
Check out these quotes from the above webpage:
This is in contrast to applicative languages that apply their functions directly to specific variables. Example: adding two numbers. Applicative language:
Concatenative language (I made it up, supposed to be similar to Forth... ;) )
While I don't think concatenative language = stack language, as the authors point out above, it seems similar. | ||||
|
feedback
|
|
From a link on the page alamar referred to: Concatenative Languages I haven't had time to read through it yet, so I don't know any more than the address right now. | |||
feedback
|
|
First I'm going to make a rebuttal to Norman Ramsey's assertion that there is no theory. Theory of Concatenative Languages A concatenative language is a functional programming language, where the default operation (what happens when two terms are side by side) is function composition instead of function application. It is as simple as that. So for example in the SKI Combinator Calculus (one of the simplest functional languages) two terms side by side are equivalent to applying the first term to the second term. For example: In a concatenative language So what's the big deal A pure concatenative language has the interesting property that the order of evaluation of terms does not matter. In a concatenative language One reason this observation is interesting because it reveals opportunities for parallelization in the evaluation of code expressed in terms of function composition instead of application. Now for the real world The semantics of stack-based languages which support higher-order functions can be explained using a concatenative calculus. You simply map each term (command/expression/sub-program) to be a function that takes a function as input and returns a function as output. The entire program is effectively a single stack transformation function. The reality is that things are always distorted in the real world (e.g. FORTH has a global dictionary, PostScript does weird things where the evaluation order matters). Most practical programming languages don't adhere perfectly to a theoretical model. Final Words I don't think a typical programmer or 8 year old should ever worry about what a concatenative language is. I also don't find it particularly useful to pigeon-hole programming languages as being type X or type Y. | ||||
|
feedback
|
|
You can't explain a language, just get one ( http://docs.factorcode.org/content/article-cookbook.html Tutorials are better than SO answerers. | |||||||||||||
feedback
|
|
I reckon the main idea is 1. We can create new programs simply by joining other programs together. Also, 2. Any random chunk of the program is a valid function (or sub-program). Good old pure RPN Forth has those properties, excluding any random non-RPN syntax. In the program 1 2 + 3 *, the sub-program + 3 * takes 2 args, and gives 1 result. The sub-program 2 takes 0 args and returns 1 result. Any chunk is a function, and that is nice! You can create new functions by lumping two or more others together, optionally with a little glue. It will work best if the types match! These ideas are really good, we value simplicity. It is not limited to RPN Forth-style serial language, nor imperative or functional programming. The two ideas also work for a graphical language, where program units might be for example functions, procedures, relations, or processes. In a network of communicating processes, every sub-network can act like a process. In a graph of mathematical relations, every sub-graph is a valid relation. These structures are 'concatenative', we can break them apart in any way (draw circles), and join them together in many ways (draw lines). Well, that's how I see it. I'm sure I've missed many other good ideas from the concatenative camp. While I'm keen on graphical programming, I'm new to this focus on concatenation. | |||
|
feedback
|