what is a programming language? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:01:18Z http://stackoverflow.com/feeds/question/869976 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/869976/what-is-a-programming-language 3 what is a programming language? Ziggy 2009-05-15T17:39:31Z 2009-05-15T18:57:17Z <p>Hi</p> <p>Wikipedia says:</p> <blockquote> <p>A programming language is a machine-readable artificial language designed to express computations that can be performed by a machine, particularly a computer. Programming languages can be used to create programs that specify the behavior of a machine, to express algorithms precisely, or as a mode of human communication.</p> </blockquote> <p>But is this true? It occurred to me in the shower this morning that a programming language might just be a set of conventions, something that both a human and an appropriately arranged compiler can interpret. If that's the case, then isn't it this definition of a programming language misleading? If that isn't the case, then what's the difference between a compiler and the language it compiles?</p> <p>Thanks!</p> <p>z.</p> http://stackoverflow.com/questions/869976/what-is-a-programming-language/869996#869996 3 Answer by matt b for what is a programming language? matt b 2009-05-15T17:43:13Z 2009-05-15T17:43:13Z <p>I don't see what is different between what you are asking...</p> <blockquote> <p>It occurred to me in the shower this morning that a programming language might just be a set of conventions, something that both a human and an appropriately arranged compiler can interpret.</p> </blockquote> <p>... and the Wikipedia definition. </p> <p>The key is that a programming language is just "a machine-readable artificial language".</p> http://stackoverflow.com/questions/869976/what-is-a-programming-language/870002#870002 4 Answer by mquander for what is a programming language? mquander 2009-05-15T17:43:56Z 2009-05-15T17:43:56Z <p>A programming language is exactly that set of conventions, but I don't see why that makes the Wikipedia entry misleading, really. If it makes you feel better, you might edit it to read something like:</p> <blockquote> <p>A programming language is a machine-readable artificial language designed to express computations that can be performed by a machine, particularly a computer. Programming languages can be used to <em>define</em> programs that specify the behavior of a machine, to express algorithms precisely, or as a mode of human communication.</p> </blockquote> http://stackoverflow.com/questions/869976/what-is-a-programming-language/870004#870004 2 Answer by bdonlan for what is a programming language? bdonlan 2009-05-15T17:44:05Z 2009-05-15T17:44:05Z <p>A compiler does indeed act as an effective specification of a language in terms of a reduction to machine code - however, as it's generally difficult to understand a language by reading the compiler's source, one generally considers a programming language in terms of an abstract processing model that the compiler implements. This abstract model is what one means when one refers to the programming language.</p> <p>That said, there are indeed many languages (Hi there, PHP!) in which the compiler is the only specification of the language in existence. These languages tend to change unpredictably at times as compiler bugs are fixed or introduced.</p> http://stackoverflow.com/questions/869976/what-is-a-programming-language/870025#870025 1 Answer by Wayne Hartman for what is a programming language? Wayne Hartman 2009-05-15T17:48:41Z 2009-05-15T17:48:41Z <p>Programming languages are an abstraction layer that helps insulate the programmer from having to talk in electrical signals to the computer. The creators of the language have done all the hard work in creating a structure (language) or standard (grammar, conjugation, etc.) that then can be interpreted by a compiler in terms that the computer understands.</p> http://stackoverflow.com/questions/869976/what-is-a-programming-language/870075#870075 2 Answer by Bobwise for what is a programming language? Bobwise 2009-05-15T17:57:45Z 2009-05-15T17:57:45Z <p>I understand what you are saying, and you are right. Describing a programming language as a "machine-readable artificial language designed to express computations that can be performed by a machine" is unnecessarily specific. Programming languages can be more broadly generalized as established descriptions of tasks (or "a set of conventions") that allow one entity to control the behavior of another. What we traditionally identify as programming languages are just a layer of abstraction between machine code and programmers, and are specifically designed for electronic computers.</p> <p>Programming languages are not limited to traditional computers (see the <a href="http://knexcomputer.blogspot.com/" rel="nofollow">K'NEX Computer</a>), and aren't even necessarily limited to computational devices at all. For example, when I am pleased with my dog's behavior, he gets a treat. When I am displeased, he gets nothing. Over time the dog learns the treat/no treat programming and I can use the treats to control his behavior (to an extent).</p> http://stackoverflow.com/questions/869976/what-is-a-programming-language/870290#870290 0 Answer by ennuikiller for what is a programming language? ennuikiller 2009-05-15T18:57:17Z 2009-05-15T18:57:17Z <p>All programming languages are really nothing more than domain specific languages for machine code or manipulating the registers and memory of a processing entity. </p>