What makes a language a scripting language? I've heard some people say "when it gets interpreted instead of compiled". That would make PHP (for example) a scripting language. It that the only criterion? or is it a coincidence, and are there other criteria?
|
2
|
|||||||||
|
|
|
A scripting language is a language that "scripts" other things to do stuff. The primary focus isn't primarily building your own apps so much as getting an existing app to act the way you want, e.g. JavaScript for browsers, VBA for MS Office. |
||
|
|
|
|
Even Java is "a scripting language", because it is implemented in C"Although I hesitate to attempt to improve on mgb's near-perfect answer, the fact is that nothing is better than C for implementation, yet the language is rather low-level and close to the hardware. Pure genius, for sure, but to develop modern SW we want a higher level language that stands on the shoulders of C, so to speak. So, you have Python, Ruby, Perl, and yes, even Java, all implemented in C. People don't insult Java by calling it a scripting language but it is. If you want a powerful, modern, dynamic, reflective, blah blah blah language you probably are running something like Ruby that is either interpreted directly in C or compiled down to something that is interpreted/JIT compiled, by some C program. The other distinction people make is to call the dynamically-typed languages "scripting languages". |
||
|
|
|
|
An important difference is strong typing (versus weak typing). Scripting languages are often weakly typed, making it possible to write small programs more rapidly. For large programs this is a disadvantage, as it inhibits the compiler/interpreter to find certain bugs autonomously, making it very hard to refactor code. |
||
|
|
|
|
Its like porn, you know it when you see it. The only possible definition of a scripting language is:
A bit circular, isn't it? (By the way, I'm not joking). Basically, there is nothing that makes a language a scripting language except that it is called such, especially by its creators. The major set of modern scripting languages is PHP, Perl, Javascript, Python, Ruby and Lua. Tcl is the first major modern scripting language (it wasn't the first scripting language though, I forget what it is, but I was surprised to learn that it predated Tcl). I describe features of major scripting languages in my paper:
Most are dynamically typed and interpreted, and most have no defined semantics outside of their reference implementation. However, even if their major implementation becomes compiled or JITed, that doesn't change the "nature" of the language. They only remaining question is how can you tell if a new language is a scripting language. Well, if its called a scripting language, it is one. So Factor is a scripting language (or at least was when that was written), but, say, Java is not. |
||
|
|
|
|
Paraphrasing Robert Sebesta in Concepts of Programming Languages:
And then you have examples like awk, tcl/tk, perl (which says that initially was a combination between sh and awk but it became so powerfull that he considers it an "odd but full-fledged programming language"). Other examples include CGI and JavaScript. |
||||||
|
|
|
Also, you may want to check out this podcast on scripting languages. |
||
|
|
|
|
I say a scripting language as anything not requiring an overt heavy-weight feeling 'compile' step. the main feature from a programmers standpoint is: you edit code and run it right away. thus I would regard javascript and PHP as scripting languages, whereas AS3/FLEX is not really |
||
|
|
|
|
A script is a relatively small program. A system is a relatively large program, or a collection of relatively large programs. Some programming languages are designed with features that the language designer and the programming community consider to be useful when writing relatively small programs. These programming languages are known as scripting languages, e.g. PHP. Similarly, other programming languages are designed with features that the language designer and the programming community consider to be useful when writing relatively large programs. These programming languages are known as systems languages, e.g. Java. Now, small and large programs can be written in any language. A small Java program is a script. For example, a Java "Hello World" program is a script, not a system. A large program, or collection of programs, written in PHP is a system. For example, Facebook, written in PHP, is a system, not a script. Considering a single language feature as a "litmus test" for deciding whether the language is best suited for scripting or systems programming is questionable. For example, scripts may be compiled to byte code or machine code, or they may be executed by direct abstract syntax tree (AST) interpretation. So, a language is a scripting language if it is typically used to write scripts. A scripting language might be used to write systems, but such applications are likely to be considered dubious. |
|||
|
|
|
|
If it doesn't/wouldn't run on the CPU, it's a script to me. If an interpreter needs to run on the CPU below the program, then it's a script and a scripting language. No reason to make it any more complicated than this? Of course, in most (99%) of cases, it's clear whether a language is a scripting language. But consider that a VM can emulate the x86 instruction set, for example. Wouldn't this make the x86 bytecode a scripting language when run on a VM? What if someone was to write a compiler that would turn perl code into a native executable? In this case, I wouldn't know what to call the language itself anymore. It'd be the output that would matter, not the language. Then again, I'm not aware of anything like this having been done, so for now I'm still comfortable calling interpreted languages scripting languages. |
|||
|
|
I think Mr Roberto Ierusalimschy has a very good answer or the question in 'Programming in Lua':
|
||||
|
|
|
I prefer that people not use the term "scripting language" as I think that it diminishes the effort. Take a language like Perl, often called "scripting language".
Why do we even need to distinguish between a language like Java that is compiled and Ruby that isn't? What's the value in labeling? For more on this, see http://xoa.petdance.com/Stop_saying_script. |
||||
|
|
|
A scripting language is a language that is interpreted every time the script is run, it implies having a interpreter and most are very human readable, to be useful a scripting language is easy to learn and use. Every compilable language can be made into a script language and vice versa it all depends on implementing a interpreter or a compiler, as an example C++ has an interpreter so it can be called a script language if used so (not very practical in general as C++ is a very complex language), one of the most useful script languages at present is Python... So to answer your question the definition is on the use of a interpreter to run quick and easy scripted programs, to address simple tasks or prototype applications the most powerful use one can make of script languages is to include the possibility for every use to extend a compiled application. |
|||
|
|
|
|
Simple. When I use it, it's a modern dynamic language, when you use it, it's merely a scripting language! |
||||||
|
|
|
May I suggest that Scripting languages has been a term lots of people are moving away from. I'd say it mostly boils down to Compiled Languages and Dynamic Languages nowadays. I mean you can't really say something like Python, or Ruby are "scripting" languages in this day and age (You even have stuff like IronPython snd JitYourFavoriteLanguage, the difference has been blurred even more). To be honest, personally I don't feel Php is a scripting language anymore. I wouldn't expect people to like categorize Php differently from say Java on there resume. |
||||||
|
|
|
This duplicates http://stackoverflow.com/questions/100905/programming-vs-scripting-whats-your-definition |
||
|
|
My definition would be a language that is typically distributed as source rather than as a binary. |
||||||||||||||
|
|
|
Your criteria sounds about right,but is always a bit fuzzy. For instance, Java is both compiled (to bytecode) and then interpreted (by the JVM). Yet it is normally not categorized as a scripting language. This might be because Java is statically typed. Where as JavaScript, Ruby, Python, Perl etc. are not (all of which are often called scripting languages). |
||
|
|
|
"Scripting language" is one of those fuzzy concepts which can mean many things. Usually it refers to the fact that there exists a one step process taking you from the source code to execution. For example in Perl you do: Given the above criteria PHP is a scripting language (even though you can have a "compilation" process for example when using the Zend Encoder to "protect" the source code). PS. Often (but not always) scripting languages are interpreted. Also often (but again, not always) scripting languages are dynamically typed. |
||||||
|
|
|
I would say scripting language is the one heavily manipulating entities it doesn't itself define. For instance, JavaScript manipulates DOM objects provided by the browser, PHP operates enormous library of C-based functions, and so on. Of course not a precise definition, more a way to think if it. |
||
|
|
|
Scripting languages tend to run within a scripting engine which is part of a larger application. For example, JavaScript runs inside your browsers scripting engine. |
||||||||||||||||||
|
