Samples
Samples
Sample-Wasm
Language: Oxygene, Platform: Island, Category: Delphi VCL
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Island/Delphi VCL/Sample-Wasm
-
Sample
-
References
- Elements
- Island
- Delphi
- DelphiVCL
- Source Files
- Other Files
-
References
Program.pas
namespace Sample;
uses
RemObjects.Elements.RTL.Delphi,
RemObjects.Elements.RTL.Delphi.VCL;
type
[Export]
Program = public class
public
method Main;
begin
Application := new TApplication(nil);
Application.Initialize;
Application.CreateForm(typeOf(Sample.TForm2), var Sample.Form2);
Application.Run;
end;
end;
end.
