"Source: Text/Code/CodeFld.text";
"Line: 628";
"Date: Thu Sep 25 14:47:47 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Code/CodeFld.text, line: 628
// Example: H165E8 ()
print "Example: H165E8";
ei := GetEchoInput();
SetEchoInput(true);
R := ReedMullerCode(1, 3);
R;
G := GeneratorMatrix(R);
P := ParityCheckMatrix(R);
P;                                                                           
G * Transpose(P);
D := LinearCode(P);
Dual(R) eq D;
assert $1;
SetEchoInput(ei);
