"Source: Text/Aggregates/Set.text";
"Line: 203";
"Date: Wed Nov 13 15:56:29 2019";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Aggregates/Set.text, line: 203
// Example: H10E1 ()
print "Example: H10E1";
ei := GetEchoInput();
SetEchoInput(true);
S := { (7^2+1)/5, (8^2+1)/5, (9^2-1)/5 };
S;
Parent(S);
T := { Integers() | (7^2+1)/5, (8^2+1)/5, (9^2-1)/5 };
T;
Parent(T);
SetEchoInput(ei);
