pascalabcnet/TestSamples/CompilationSamples/stringtest2.pas

14 lines
127 B
ObjectPascal
Raw Normal View History

2015-05-14 22:35:07 +03:00
procedure p(s:string);
begin
s:='x';
writeln(s);
end;
var s:string;
begin
s:='yd';
p(s);
writeln(s);
readln;
end.