+ 5
Which one is better between using an interpreter or using a compiler?
2 Answers
+ 5
Depending what your developing, for web based and small scripts to automate things an interpreter is fine. if your developing games or appliactons then I use a compiler. the advantage of a compiler is it runs faster. as the interpreter executes the script one line at a time.