"Source: Text/Ring/RngLoc.text";
"Line: 260";
"Date: Fri Sep 26 14:29:19 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Ring/RngLoc.text, line: 260
// Example: H49E1 ()
print "Example: H49E1";
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);
