Last change
on this file was 91, checked in by chronos, 8 years ago |
- Added: Start new compiler branch which should run under Delphi. Logical parts should be maintained separately.
|
File size:
228 bytes
|
Line | |
---|
1 | unit UTarget;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | type
|
---|
6 | TTarget = class
|
---|
7 | Name: string;
|
---|
8 | procedure Produce; virtual;
|
---|
9 | end;
|
---|
10 |
|
---|
11 | TTargetClass = class of TTarget;
|
---|
12 |
|
---|
13 |
|
---|
14 | implementation
|
---|
15 |
|
---|
16 | procedure TTarget.Produce;
|
---|
17 | begin
|
---|
18 | WriteLn('Produce');
|
---|
19 | end;
|
---|
20 |
|
---|
21 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.