"Source: Text/Aggregates/Set.text";
"Line: 683";
"Date: Wed Nov 13 15:56:29 2019";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Aggregates/Set.text, line: 683
// Example: H10E5 ()
print "Example: H10E5";
ei := GetEchoInput();
SetEchoInput(true);
S := { FiniteField(13) | x : x in { 1..10 } };
S;
G := PowerSet(FiniteField(13));
S := G ! { 1..10 };
S;
SetEchoInput(ei);
