You've already forked lazarus-ccr
20 lines
249 B
ObjectPascal
20 lines
249 B
ObjectPascal
![]() |
program CodeGen;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
{.$MODE Delphi}
|
||
|
|
||
|
uses
|
||
|
Interfaces,
|
||
|
Forms,
|
||
|
CODEGENU in 'CODEGENU.pas' {CodeGenFrm}, tponguard;
|
||
|
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TCodeGenFrm, CodeGenFrm);
|
||
|
Application.Run;
|
||
|
end.
|
||
|
|
||
|
|