source:
trunk/Demos/Console/Console.pas
Last change on this file was 25, checked in by , 14 years ago | |
---|---|
File size: 223 bytes |
Line | |
---|---|
1 | program Console; |
2 | |
3 | uses System; |
4 | |
5 | type |
6 | TConsole = record |
7 | procedure Read: Char; |
8 | procedure Write(A: Char); |
9 | end; |
10 | |
11 | function TConsole.Read: Char; |
12 | begin |
13 | |
14 | end; |
15 | |
16 | procedure TConsole.Write(A: Char); |
17 | begin |
18 | |
19 | end; |
20 | |
21 | begin |
22 | end. |
Note:
See TracBrowser
for help on using the repository browser.