Arithmetic/Complex: Difference between revisions

Content added Content deleted
(→‎{{header|Wren}}: Now uses new Wren-complex module.)
Line 101: Line 101:
New_Line;
New_Line;
-- Conjugation
-- Conjugation
Put("-- Conjugate(-A) = ");
Put("Conjugate(-A) = ");
C := Conjugate (C); Put(C);
C := Conjugate (C); Put(C);
end Complex_Operations;</lang>
end Complex_Operations;</lang>