"Source: Text/Aggregates/Set.text";
"Line: 203";
"Date: Thu Sep 25 14:47:47 2025";
"Main: Fri Sep 26 14:29:19 2025";
// 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);
