13 lines
196 B
ObjectPascal
13 lines
196 B
ObjectPascal
|
program FXtest;
|
||
|
|
||
|
uses
|
||
|
Forms,
|
||
|
test in 'test.pas' {Form1},
|
||
|
Bass in '..\Bass.pas';
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TForm1, Form1);
|
||
|
Application.Run;
|
||
|
end.
|