pascalabcnet/TestSuite/CheckOutputSeq.pas

8 lines
182 B
ObjectPascal
Raw Normal View History

2023-07-10 11:20:04 +03:00
procedure CheckOutputSeq(a: sequence of char); begin end;
procedure CheckOutputSeq(a: sequence of object); begin end;
begin
var a := ArrFill(10,'*');
CheckOutputSeq(a);
end.