source: branches/dcomp/Compiler/UTarget.pas

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 
1unit UTarget;
2
3interface
4
5type
6 TTarget = class
7 Name: string;
8 procedure Produce; virtual;
9 end;
10
11 TTargetClass = class of TTarget;
12
13
14implementation
15
16procedure TTarget.Produce;
17begin
18 WriteLn('Produce');
19end;
20
21end.
Note: See TracBrowser for help on using the repository browser.