1 (edited by haciamirumbo 2021-09-05 13:18:59)

Topic: Question about MVD scripts C++ and Object Pascal

Hello, I have a question. If I am not wrong I think Embarcadero RAD - Delphi uses or recognizes Object Pascal and C++ as languages. Does the compiler included in MVD do the same? So does MVD recognize C++ too? Thanks, Jaime.

Re: Question about MVD scripts C++ and Object Pascal

MVD has a Pascal Script engine inside and is not a full featured compiler. Pascal Script is a a subset of Delph/Pascali and not complete Delphi/Pascal.


RAD Studio does not recognize Open Pascal. It uses Delphi. Open Pascal has some changed headers and functions. So both are not 100% compatible.


Open Pascal is mostly similar to Delphi 7 which is around 20 years old. Open Pascal 3.3 tries to come close to the current Delphi but is at the moment not stable enough for production use. More information at www.lazarus-ide.org or www.pilotlogic.com


For C++ you need another compiler like Dev C++ or Codeblock

Re: Question about MVD scripts C++ and Object Pascal

Thank you very much.