What's the difference between a “script” and an “application”?

前端 未结 20 2024
南旧
南旧 2020-12-04 14:53

I\'m referring to distinctions such as in this answer:

...bash isn\'t for writing applications it\'s for, well, scripting. So sure, your application m

20条回答
  •  时光取名叫无心
    2020-12-04 15:21

    I think that there is no matter at all whether code is compiled or interpreted.

    The true difference is in core logic of code:

    • If code makes new functionality that is not implemented in other programs in system - it's a program. It even can be manipulated by a script.

    • If code is MAINLY manipulates by actions of other programs and total result is MAINLY the results of work of manipulated programs - it's a script. Literally a script of actions for some programs.

提交回复
热议问题