Delphi is an open source programming language created in 1995 by Anders Hejlsberg.
#134on PLDB | 29Years Old |
Embarcadero Delphi is an integrated development environment (IDE) for desktop, mobile, web, and console applications. It's also an event driven language. Delphi's compilers use their own Object Pascal dialect of Pascal and generate native code for several platforms: Windows (x86 and x64), OS X (32-bit only), iOS (32 and 64-bit), Android and Linux (64-bit Intel). Read more on Wikipedia...
program HelloWorld;
{$APPTYPE CONSOLE}
begin
WriteLn('Hello World');
end.
// Hello World in Delphi
Program Hello_World;
{$APPTYPE CONSOLE}
Begin
WriteLn('Hello World');
End.
procedure TForm1.ShowSomethingOnCreate;
begin
Label1.Text := 'Hello World!';
end;
Feature | Supported | Example | Token |
---|---|---|---|
Strings | ✓ | 'Hello world' | ' |
Case Insensitive Identifiers | ✓ | ||
MultiLine Comments | ✓ | { A comment } | { } |
Print() Debugging | ✓ | WriteLn | |
Line Comments | ✓ | // A comment | // |
Comments | ✓ | ||
Semantic Indentation | X |