source: trunk/Demos/Simple/Simple.dpr

Last change on this file was 66, checked in by chronos, 12 years ago
  • Added: Information text about completion of build process including elapsed time.
File size: 136 bytes
Line 
1program Simple;
2
3uses
4 System;
5
6var
7 A: Integer;
8begin
9 A := 2;
10 A := A + 1;
11 WriteLn('Hello world!');
12 ReadLn;
13end.
Note: See TracBrowser for help on using the repository browser.