It's say to generate a winform:
var
F : TForm;
L : TLabel;
begin
F := TForm.Create(Application);
L := TLabel.Create(F);
L.Parent := F; // Needed to have it show up on the form.
L.Left := 50;
L.Top := 50;
L.Caption := 'This is an example';
F.Show;
end;
In fact it's from my previous question.
If it's C programme, I can run it this way:
> gcc foo.c -o foo.exe
> foo.exe
How can I do it similarly in Delphi?