vote up 1 vote down star
1

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.

Maybe I'm wrong, but how do you define those two words?


Duplicate of http://stackoverflow.com/questions/98268/whats-the-difference-between-a-script-and-an-application

flag

71% accept rate
stackoverflow.com/questions/98268/… Possibly Duplicate. – Kent Fredric Sep 19 '08 at 10:15
I'd add the link to the duplicate as an answer – Peter Hilton Sep 19 '08 at 10:17
Added link to origional – Teifion Sep 19 '08 at 10:19

closed as exact duplicate by aku Sep 19 '08 at 10:17

6 Answers

vote up 5 vote down check

Programming: Writing code that has a compilation stage into machine code (or bytecode) before it can be run.

Scripting: Writing code that is interpreted or JIT compiled from the source code.

Yes, there are some overlaps. Deal with it! :)

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.

link|flag
vote up 1 vote down

I think that's a good way to look at it - programming being something that is compiled into machine code.

Perhaps also, scripting presumes just a loose bunch of functions and variables, whereas programming implies a well structured set of classes and libraries?

link|flag
vote up 2 vote down

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.

(But HTML is not a programming language. It doesn't contain instructions for the computer, it describes a layout.)

From Answers.com:

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.

link|flag
That's a pretty poor description that only covers procedural programming. Declarative programming languages don't produce programs by that definition. – JoshJordan May 21 at 18:42
vote up 1 vote down

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"

link|flag
vote up 1 vote down

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)

link|flag
vote up 7 vote down

I think that is an artificial distinction. Either way you are making a computer work for you. It is all programming.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.