Is there a good scripting Pascal-like language for Delphi?

后端 未结 5 1794
慢半拍i
慢半拍i 2021-02-05 16:54

I\'m looking for a good free scripting engine for Delphi. I want to add scripting to an application so that I can write small test scripts. Specifically I need:

相关标签:
5条回答
  • 2021-02-05 17:38

    The Jedi JVCL also includes TJvInterpreter which is a very lightweight (small) interpreter, but with much more limited features than dwscript.

    For very small (User entered formulas, or simple string and numeric processing tasks) JvInterpreter has worked quite well for me.

    0 讨论(0)
  • 2021-02-05 17:42

    Try embedding Lua. See Lua 5.1 for Delphi for instance.

    0 讨论(0)
  • 2021-02-05 17:44

    Few years ago I used to work with Pax Compiler in combination with this Forms Editor.

    0 讨论(0)
  • 2021-02-05 17:45

    FastScript from FastReport (stack does not allow to give a link). Includes PascalScript, C++Script, JScript and BasicScript. PascalScript seems to be exactly what you ask for.

    0 讨论(0)
  • 2021-02-05 17:52

    Try the dwscript library which is currently maintained by Eric Grange.

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