Реферат: Основы программирования
end;
begin
end.
Программа, использующая модуль DINAMO
program DODAVANNYA;
uses Dinamo, Crt;
type
pdata=^tdata;
tdata=record
a:string[20];
end;
var
r: char;
dont,first,ptemp: pitem;
b:string[20];
tmp :pdata;
Procedure Novoe;far;
begin
new(tmp);
writeln('Vvedite zifru');
read(b);
if first=nil then
begin
with tmp^ do a:=b;
dont:=new_item(tmp);
first:=new_item(tmp);
end
else
begin
with tmp^ do a:=b;