DEV Community

Discussion on: 15 Best Ways to Achieve Flow

Collapse
 
eljayadobe profile image
Eljay-Adobe

Huge advantage to scripting (non-compiled) languages is that it is possible to have a super-fast edit/run cycle, and quite often have a lot less unnecessary code ceremony. Depending on the scripting language, may even be able to edit the code live. The major disadvantage is poor static analysis.

Huge advantage to compiled languages is that they can do all sorts of static analysis for type correctness, and are (typically) a lot more performant. The major disadvantage is edit/compile/run cycle is painfully long.

(JOKE ALERT)

Then there are "hybrid" languages in between those two camps. Like Java. Which has all the disadvantages of a compiled language, tightly coupled with all the disadvantages of a scripting language.

(END OF JOKE ALERT)

Note to Java users: if you like Java, just substitute C# and enjoy the joke.

Thread Thread
 
ben profile image
Ben Halpern

Yep. Logically I love the advantages of the compiler. My human brain hasn't taken to that pace though. I suspect eventually I'll find something in that arena that works for me.