source:
trunk/Demos/Simple/Simple.dpr
Last change on this file was 66, checked in by , 12 years ago | |
---|---|
File size: 136 bytes |
Line | |
---|---|
1 | program Simple; |
2 | |
3 | uses |
4 | System; |
5 | |
6 | var |
7 | A: Integer; |
8 | begin |
9 | A := 2; |
10 | A := A + 1; |
11 | WriteLn('Hello world!'); |
12 | ReadLn; |
13 | end. |
Note:
See TracBrowser
for help on using the repository browser.