"Source: Text/Geometry/Scheme.text";
"Line: 1389";
"Date: Fri May 26 16:23:18 2023";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Scheme.text, line: 1389
// Example: H119E11 ()
print "Example: H119E11";
ei := GetEchoInput();
SetEchoInput(true);
A<x,y,z> := AffineSpace(Rationals(),3);
X := Scheme(A,x-y);
X;
Y := Scheme(X,[x^2 - z^3,y^3 - z^4]);
Y;
Ambient(Y) eq A;
assert $1;
SetEchoInput(ei);
