"Source: Text/Ring/RngLoc.text";
"Line: 259";
"Date: Fri Apr 14 10:35:14 2023";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Ring/RngLoc.text, line: 259
// Example: H48E1 ()
print "Example: H48E1";
ei := GetEchoInput();
SetEchoInput(true);
R := pAdicRing(5);
R;
R`DefaultPrecision;
assert $1 eq 20;
R!1;
R := pAdicRing(5 : Precision := 20);
R!1;
Q := quo<R | 5^20>;
Q;
Q!1;
assert $1 eq 1;
Q eq pAdicQuotientRing(5, 20);
assert $1;
SetEchoInput(ei);
