Files
Misc/Whisper/WhisperTest.dpr
Michael Schimmel ef402b867a Whisper-Test
2026-02-04 12:23:55 +01:00

15 lines
230 B
ObjectPascal

program WhisperTest;
uses
System.StartUpCopy,
FMX.Forms,
WhisperMain in 'WhisperMain.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.