mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-13 21:05:12 -05:00
17 lines
222 B
ObjectPascal
17 lines
222 B
ObjectPascal
program new;
|
|
|
|
{ Creating TForm crashed for me, but probably because I'm on Linux x86_64 }
|
|
procedure init;
|
|
|
|
//var
|
|
// a: TForm;
|
|
begin
|
|
createf;
|
|
// a := TForm.Create(nil);
|
|
// a.ShowModal;
|
|
// a.Free;
|
|
end;
|
|
|
|
begin
|
|
end.
|