Programming vs scripting -- what's your definition? - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-28T06:23:48Zhttp://stackoverflow.com/feeds/question/100905http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/100905/programming-vs-scripting-whats-your-definition1Programming vs scripting -- what's your definition? [closed]Eikern2008-09-19T10:13:10Z2008-10-17T17:17:08Z
<p>What is your definition of programming vs. scripting?
I've always thought of programming as writing in a language which you have to compile into an application or something else.
Then we have scripting which is something that doesn't need compiling, like (X)HTML, JavaScript, PHP, MSL, etc.</p>
<p>Maybe I'm wrong, but how do you define those two words?</p>
<p><hr>
Duplicate of <a href="http://stackoverflow.com/questions/98268/whats-the-difference-between-a-script-and-an-application">http://stackoverflow.com/questions/98268/whats-the-difference-between-a-script-and-an-application</a></p>
http://stackoverflow.com/questions/100905/programming-vs-scripting-whats-your-definition/100916#1009167Answer by Victor for Programming vs scripting -- what's your definition?Victor2008-09-19T10:16:07Z2008-09-19T10:16:07Z<p>I think that is an artificial distinction. Either way you are making a computer work for you. It is all programming.</p>
http://stackoverflow.com/questions/100905/programming-vs-scripting-whats-your-definition/100920#1009201Answer by Rik for Programming vs scripting -- what's your definition?Rik2008-09-19T10:16:31Z2008-09-19T10:16:31Z<p>My definition: programming is something that result in an app in it own right, as opposed to scripting, which results in something that only works in the context of another app (like a browser, for instance)</p>
http://stackoverflow.com/questions/100905/programming-vs-scripting-whats-your-definition/100931#1009311Answer by Dmitry Khalatov for Programming vs scripting -- what's your definition?Dmitry Khalatov2008-09-19T10:18:18Z2008-09-19T10:18:18Z<p>If your program is being interpreted - it is scripting. If it should be previously compiled - programming. But life is more complex, so there are languages that mixes both (LUA) or SmallTalk-like, where there are no "program" as text stream but collection of objects (that may interact in some ways) inside an "environment"</p>
http://stackoverflow.com/questions/100905/programming-vs-scripting-whats-your-definition/100933#1009332Answer by Christian Davén for Programming vs scripting -- what's your definition?Christian Davén2008-09-19T10:18:24Z2008-09-19T10:18:24Z<p>Programming is the process of writing detailed instructions that a computer can execute to perform a specific task. No matter what the programming language is called. Scripting languages are programming languages, so programming in bash or PHP is still programming.</p>
<p>(But HTML is not a programming language. It doesn't contain instructions for the computer, it describes a layout.)</p>
<p>From <a href="http://www.answers.com/main/ntquery?gwp=13&s=programming" rel="nofollow">Answers.com</a>:</p>
<blockquote>
<p>Within the context of information systems, the term programming is understood to mean computer programming, which is the process of writing computer programs. A computer program is a detailed, step-by-step set of instructions that is executed by a computer in order to perform a specific task or solve a specific problem.</p>
</blockquote>
http://stackoverflow.com/questions/100905/programming-vs-scripting-whats-your-definition/100934#1009345Answer by JeeBee for Programming vs scripting -- what's your definition?JeeBee2008-09-19T10:18:30Z2008-09-19T10:18:30Z<p><strong>Programming:</strong> Writing code that has a compilation stage into machine code (or bytecode) before it can be run.</p>
<p><strong>Scripting:</strong> Writing code that is interpreted or JIT compiled from the source code.</p>
<p>Yes, there are some overlaps. Deal with it! :)</p>
<p>You might wonder about scripting things like an application installer. For argument sake I am not including these, but it does suggest that scripting languages are restricted to the functions made available by the interpreting environment they are run in, and as that environment gains features it becomes more what we term a full programming language, so that you can write your raytracer in bash scripts, etc, if you feel like it.</p>
http://stackoverflow.com/questions/100905/programming-vs-scripting-whats-your-definition/100944#1009441Answer by Matt for Programming vs scripting -- what's your definition?Matt2008-09-19T10:21:09Z2008-09-19T10:21:09Z<p>I think that's a good way to look at it - programming being something that is compiled into machine code.</p>
<p>Perhaps also, scripting presumes just a loose bunch of functions and variables, whereas programming implies a well structured set of classes and libraries?</p>