aboutsummaryrefslogtreecommitdiff
path: root/test/logo.adb
diff options
context:
space:
mode:
Diffstat (limited to 'test/logo.adb')
-rw-r--r--test/logo.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/logo.adb b/test/logo.adb
index 3c2412f..575bdad 100644
--- a/test/logo.adb
+++ b/test/logo.adb
@@ -56,9 +56,9 @@ procedure Logo is
Result : State;
begin
Math.Logarithm (Relation, B (Power) & B (Base) & Exponent & Remainder);
+ TIO.Put ("log_" & P (Base) & " (" & P (Power) & ") = ");
Result := Relation.Run;
- TIO.Put_Line ("log_" & P (Base) & " (" & P (Power) & ") = " &
- PV (Exponent.Resolve (Result)) & " r " & PV (Remainder.Resolve (Result)));
+ TIO.Put_Line (PV (Exponent.Resolve (Result)) & " r " & PV (Remainder.Resolve (Result)));
end Test;
begin