Files
MycLib/ASTPlayground/ASTPlayground.dpr
T
Michael Schimmel 9419f5cd03 AST refactoring
2025-08-28 15:14:08 +02:00

20 lines
524 B
ObjectPascal

program ASTPlayground;
uses
System.StartUpCopy,
FMX.Forms,
MainForm in 'MainForm.pas' {Form1},
Myc.Ast.Evaluator in '..\Src\AST\Myc.Ast.Evaluator.pas',
Myc.Ast.Printer in '..\Src\AST\Myc.Ast.Printer.pas',
Myc.Ast.Types in '..\Src\AST\Myc.Ast.Types.pas',
Myc.Ast.Scope in '..\Src\AST\Myc.Ast.Scope.pas',
Myc.Ast.Closure in '..\Src\AST\Myc.Ast.Closure.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.