diff options
Diffstat (limited to 'test/multo.adb')
| -rw-r--r-- | test/multo.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/multo.adb b/test/multo.adb index ad49453..f22d570 100644 --- a/test/multo.adb +++ b/test/multo.adb @@ -55,9 +55,9 @@ procedure Multo is Result : State; begin Math.Multiply (Relation, B (Multiplier) & B (Multiplicand) & Product); + TIO.Put (P (Multiplier) & " * " & P (Multiplicand) & " = "); Result := Relation.Run; - TIO.Put_Line (P (Multiplier) & " * " & P (Multiplicand) & - " = " & PV (Product.Resolve (Result))); + TIO.Put_Line (PV (Product.Resolve (Result))); end Test; begin |
