source: branches/Pascal Compiler/UCompiler.pas

Last change on this file was 15, checked in by george, 15 years ago
  • Přidáno: Další pokusný projekt překladače.
File size: 279 bytes
Line 
1unit UCompiler;
2
3interface
4
5uses
6 Classes;
7
8type
9 TInstructionList = TList; // TList<TInstruction>
10
11function Compile(SourceCode: TStringList): TInstructionList;
12
13implementation
14
15function Compile(SourceCode: TStringList): TInstructionList;
16begin
17
18end;
19
20end.
Note: See TracBrowser for help on using the repository browser.