aboutsummaryrefslogtreecommitdiff
path: root/test/multo.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2026-01-07 11:50:31 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2026-01-07 11:50:31 +1300
commit2209ab74ab651d958e250d1f991fe9f076f76503 (patch)
treedb13590fdea0c26bc9346ecad186ee065288b4b0 /test/multo.adb
parent8a8435b1f51401ebe4881ab8da1eb4f3913270fd (diff)
Test programs now interleave calculation and text output better
Diffstat (limited to 'test/multo.adb')
-rw-r--r--test/multo.adb4
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