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