The Delphi Programming Language

Hello World! Example Program


Click below to go directly to a specific section:
Description | Source Code | Sample Run | Program Notes

Description

This program demonstrates the visual tool in Delphi.

Source Code

unit hworld;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Label1: TLabel;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.DFM}

end.
Click
here to download the source code.

Sample Run

Hello world!

Program Notes

This program was tested and run using the Borlan Delphi trial compiler.
[Back] [Home]

Last modified: 03:37 PM on 11/09/1996