diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-05-15 10:34:47 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-05-15 10:34:47 +0200 |
| commit | 9064a9de55326a9c4a224758d0f689c8cb98d4a4 (patch) | |
| tree | 6077a94cb989dd482f50990633a98f9448b5b54c /Занимательное программирование/7/4_solver/solver.lpr | |
| parent | ee8f910cb0a2761d77a13fb4423a157a6d64b19c (diff) | |
| download | book-exercises-master.tar.gz | |
Diffstat (limited to 'Занимательное программирование/7/4_solver/solver.lpr')
| -rw-r--r-- | Занимательное программирование/7/4_solver/solver.lpr | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Занимательное программирование/7/4_solver/solver.lpr b/Занимательное программирование/7/4_solver/solver.lpr new file mode 100644 index 0000000..d5fc39e --- /dev/null +++ b/Занимательное программирование/7/4_solver/solver.lpr @@ -0,0 +1,28 @@ +program solver; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX} + cthreads, + {$ENDIF} + {$IFDEF HASAMIGA} + athreads, + {$ENDIF} + Interfaces, // this includes the LCL widgetset + Forms, Unit1, States, Problems + { you can add units after this }; + +{$R *.res} + +begin + RequireDerivedFormResource:=True; + Application.Scaled:=True; + {$PUSH}{$WARN 5044 OFF} + Application.MainFormOnTaskbar:=True; + {$POP} + Application.Initialize; + Application.CreateForm(TForm1, Form1); + Application.Run; +end. + |
