Measures Concepts
GitHub icon

Object Pascal

Object Pascal - Programming language

< >

Object Pascal is a programming language created in 1986.

#243on PLDB 38Years Old

Object Pascal refers to a branch of object-oriented derivatives of Pascal, mostly known as the primary programming language of Embarcadero Delphi.. Read more on Wikipedia...


Example from hello-world:
program ObjectPascalExample; type THelloWorld = class procedure Put; end; procedure THelloWorld.Put; begin Writeln('Hello World'); end; var HelloWorld: THelloWorld; begin HelloWorld := THelloWorld.Create; HelloWorld.Put; HelloWorld.Free; end.
Example from Wikipedia:
type THelloWorld = class procedure Put; begin PrintLn('Hello, World!'); end end; var HelloWorld := THelloWorld.Create; HelloWorld.Put;

Language features

Feature Supported Token Example
Strings ✓ '
'Hello world'
MultiLine Comments ✓ { }
(* A comment
*)
Comments ✓
(* This is a multi-line comments
 and it will span multiple lines. *)
{ This is a single line comment in pascal }
Operator Overloading ✓
Constructors ✓
Semantic Indentation X
Line Comments X

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout