source: branches/dcomp/Compiler/UAnalyzer.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: 168 bytes
Line 
1unit UAnalyzer;
2
3interface
4
5type
6 TAnalyzer = class
7 procedure Analyze;
8 end;
9
10implementation
11
12procedure TAnalyzer.Analyze;
13begin
14 WriteLn('Analyze');
15end;
16
17end.
Note: See TracBrowser for help on using the repository browser.