source: branches/dcomp/TargetPHP/UTargetPHP.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: 211 bytes
Line 
1unit UTargetPHP;
2
3interface
4
5uses
6 UTarget;
7
8type
9 TTargetPHP = class(TTarget)
10 procedure Produce; override;
11 end;
12
13implementation
14
15procedure TTargetPHP.Produce;
16begin
17 WriteLn('Produce PHP');
18end;
19
20end.
Note: See TracBrowser for help on using the repository browser.