What's the benefit of Parrot VM for end-users?

后端 未结 1 903
灰色年华
灰色年华 2021-01-21 02:21

What\'s the benefit of the Parrot Virtual Machine for end-users (software developers)?

For example, if I could program against Perl or Python directly why would I bother

相关标签:
1条回答
  • 2021-01-21 02:42

    Basically, the typical benefits of a VM (portability, runtime optimizations, etc.). From the main page:

    Once a program has been compiled to run on a virtual machine, it will run on any platform that the VM has been implemented on.

    Parrot is just different from typical VM in that it's designed to support any existing language, not just an specific language. So, when Parrot improves, every supported language does improve.

    0 讨论(0)
提交回复
热议问题