pascalabcnet/_Presentations/2015 New Features/Programs/09-3_DynArr.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

8 lines
106 B
ObjectPascal

begin
var a := Seq(2,5,3,1,9,7);
writeln(a);
Sort(a);
writeln(a);
Reverse(a);
writeln(a);
end.