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

7 lines
127 B
ObjectPascal

begin
var a := SeqRandom();
a.Println;
a.Sorted().Println(', ');
Println(a.Min,a.Max);
Println(a.Sum,a.Average);
end.