CodeGear Delphi is a programming language created in 1995.
#3779on PLDB | 29Years Old |
Delphi is an integrated development environment (IDE) for rapid application development of desktop, mobile, web, and console software, developed by Embarcadero Technologies. It is also an event-driven language. Delphi's compilers use their own Object Pascal dialect of Pascal and generate native code for Microsoft Windows, macOS (IA-32 only), iOS, Android and Linux (x64 only). Read more on Wikipedia...
procedure TForm1.ShowSomethingOnCreate;
begin
Label1.Text := 'Hello World!';
end;