What are reasons to choose a scripting language over C#?

后端 未结 10 1618
萌比男神i
萌比男神i 2020-12-22 04:07

What are reasons to choose a non DSL scripting language over statically compiled language such as C#?

-edit- Good answers so far. I feel I should explain further. I

10条回答
  •  伪装坚强ぢ
    2020-12-22 04:18

    Scripting languages excel primarily in 2 areas:

    1. Small to medium sized projects where performance is not a top priority and flexibility in the runtime enviroment is.

    2. The construction of domain specific languages. The duck typing, dynamic method invocation capabilities of a scripting language make it ideal for designing domain specific languages. Ruby on Rails, of course, is the poster boy for this capability, but numerous other examples exist especially in proprietary in-house developed software.

提交回复
热议问题