DELPHI Programming Language Help For Students

Introduction to Delphi

Delphi is a sophisticated Windows programming environment, suitable for beginners and professional programmers alike. With the help of Delphi, you can create self contained, user friendly, highly efficient windows applications in a very short time-with a minimum of manual coding. Delphi is a fully object oriented programming language allows the programmer to create and manipulate the objects.

Example: Hello World!

{`
unit hworld;
interface
uses

  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;
type
TForm1 = className(TForm)
Label1: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.
`}
DELPHI Programming Language

Delphi Compiler

Download Delphi Compiler click here