1
0

Закончил удава из 7-й главы, пятого упражнения

This commit is contained in:
2026-04-04 20:25:37 +02:00
parent 3dff805e9b
commit e4dd7b7416
7 changed files with 597 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
program Snake;
{$MODE Delphi}
uses
Forms, Interfaces,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.