View Single Post
Old 11-09-2008, 07:12 PM   #6 (permalink)
ixmatus
Senior Member
 
Join Date: Oct 2007
Location: Vegas Baby!
Posts: 162
ixmatus is on a distinguished road
Default

Aside from readability, interpreted languages do not need to be compiled. I say interpreted, because, not all scripting languages are interpreted - very few are compiled. This means that interpreted languages are: quicker time to develop but slower at execution.

It is generally accepted that interpreted languages are excellent for prototyping larger applications, or 'gluing' compiled parts of a larger application together. Many programs will be written in an interpreted language and then their heavier algorithms will be refactored into a C module (Python for example) that will run much faster.
ixmatus is offline   Reply With Quote