{" "} Programming Help for Object Pascal programming
Introduction to Object Pascal programming Language
Object Pascal Programming Language is known as the primary programming language of Embarcadero Delphi and it is also derivative of Pascal.It was developed by Apple,Niklaus Wirth and Anders Hejlsbetrg in 1986.It is influened by Pasca and Smaltalk.The extension of file are .p .
Version of Object Pascal:
- Borland
- Embarcadero Technologies
- .NET
- Oxygene
- Morfik Pascal
- Smart Pascal
Example of Object Pascal programming Language
{` program ObjectPascalExample; type THelloWorld = object procedure Put; end; var HelloWorld: THelloWorld; procedure THelloWorld.Put; begin WriteLn('Hello, World!'); end; begin New(HelloWorld); HelloWorld.Put; Dispose(HelloWorld); end. `}