Blockly test

This commit is contained in:
Michael Schimmel
2025-06-10 22:31:16 +02:00
parent 0e598d595e
commit 7516bd3d9d
9 changed files with 2089 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
program BlocklyTest;
uses
System.StartUpCopy,
FMX.Forms,
MainUnit in 'MainUnit.pas' {MainForm},
LLVM.Runner in 'LLVM.Runner.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.