Pascal attachment

Does anyone know of a Pascal interpreter / compiler that integrates into C ++ applications (or anything else besides Pascal)? I am cloning (for lack of a better word) an application that uses an Object-Pascal compatible scripting language and must be script compatible. Should I write a translator? (!)

+7
scripting pascal embedding
source share
6 answers

There RemObjects Pascal Script . You can probably call it C ++ Builder .

Pascal Script is a free scripting engine that allows you to use most of the Object Pascal language in your Delphi or Free Pascal projects at run time.

There's also a TMS Scripter Studio .

By creating scripting support for your applications, you can provide a high degree of customization, flexibility, and automation in your applications.

+2
source share

I think this is a language interpreter / compiler for the user of the programming and launching application, if so, I can offer Lua or Pascal Script . Sorry for the lack of links, but this requires points.

EDIT: Corrected links and spelling of Lua

+2
source share

PaxCompiler can be built into C ++ Builder. Additional information at http://www.paxcompiler.com .

+1
source share

The NIH image was as pascal as an embedded language. I do not know if it is available, easy to extract, or useful for your purposes.

0
source share

The Free Pascal compiler supports Object Pascal, and it says you can call the Pascal library from C program . With luck, it will be as good as the introduction.

What are you looking for? (If not, you can translate Standard Pascal to C using p2c , the Pascal-to-C translator available from Debian, among other places. But using p2c , I cannot recommend it, and I don't think it understands Object Pascal.)

0
source share

https://github.com/BenLand100/CPascal

You can expand it for what you are trying to build.

0
source share

All Articles