Jsem začátečník a chtěl bych se zeptat jaký je rozdíl mezi tím, když něco zapíšu tím to způsobem:
type
druh = (zena, muz);
var
pohlavy:druh;
begin
if (pohlavy = muz) then
begin
writeln ('Muz.');
end
else
begin
writeln (' Zena.');
end;
end.
a nebo když to zapíšu takto
var
txt, muz, zena : string;
begin
if (txt = 'muz') then
begin
writeln ('Muz.');
end
else
begin
writeln ('Zena.');
end;
end.
Děkuji za odpověď.