+ 2
Script vs program
What's the difference between a scripting language like (eg: bash) and a programming language? Any help is highly appreciated.
1 Answer
+ 3
Scripting languages need an interpreter to be executed while they are not compiled and are distributed in plain text. Languages like C/C++/C#/Go/Rust/Assembler needs to be compiled before can be used/executed.
Java is strange - is not a scripting language but needs interpreter (JVM) to run sources compiled into the bytecode.
But anyway all these are programming languages - both scripting and compiled :)