pascalabcnet/_Presentations/2015 New Features/Programs/10_Ext-1.pas

7 lines
127 B
ObjectPascal
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
begin
var a := SeqRandom();
a.Println;
a.Sorted().Println(', ');
Println(a.Min,a.Max);
Println(a.Sum,a.Average);
end.