Scripting language for C/C++?

后端 未结 12 1878
礼貌的吻别
礼貌的吻别 2020-12-25 07:56

Is there a scripting language for C++ (like perl) which can be used for rapid development and use some tool which can convert into C/C++ program to get higher performance f

12条回答
  •  没有蜡笔的小新
    2020-12-25 08:38

    With a C/C++ interpreter you can use C/C++ as a scripting language

    • Ch: http://www.softintegration.com/

      Commmercial C/C++ interpreter with a free Standard Edition. Has support for various popular libraries and windowing toolkits.

    • CINT: http://root.cern.ch/drupal/content/cint

      Actively developed open-source (MIT license) C/C++ interpreter. Developed as part of the ROOT environment at the CERN. Used by many physicist.

    • ccons: http://code.google.com/p/ccons/

      An interactive C console which employs LLVM and its new C frontend (clang). Under active development

    • UnderC: http://home.mweb.co.za/sd/sdonovan/underc.html

      An open-source (LGPL) C++ interpreter. Seems to be a bit dated (2002).


    Note: So far, I have tried only Ch and CINT. I have added ccons and UnderC to make the list more complete.

提交回复
热议问题