home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 September
/
Chip_2001-09_cd1.bin
/
zkuste
/
delphi
/
kolekce
/
d12345
/
CHEMPLOT.ZIP
/
TPlot
/
Demo
/
Normal.dpr
< prev
next >
Wrap
Text File
|
2001-05-10
|
262b
|
19 lines
program Normal;
uses
{$IFDEF WIN32}
Forms,
{$ENDIF}
{$IFDEF LINUX}
QForms,
{$ENDIF}
Normal1 in 'Normal1.pas' {MainForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.