About
A script is the text file that contains code (generally from a scripting language).
It:
- is executed directly by via the interpreter
- without compile phase
- or the compile step is transparent
- is read from top to bottom with the last statement being the calling code.
- does not need any main method or class.
It's a part of the source.
It's an executable.