Skip to content

Commit f5f95fb

Browse files
committed
Standardize php output
1 parent cd1def4 commit f5f95fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contents/euclidean_algorithm/code/php/euclidean.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function euclid_mod(int $a, int $b): int
2929
return $a;
3030
}
3131

32-
printf('Euclidean mod: %s', euclid_mod(64 * 67, 64 * 81));
32+
printf('[#]'.PHP_EOL.'Modulus-based euclidean algorithm result:'.PHP_EOL.'%s', euclid_mod(64 * 67, 64 * 81));
3333
echo PHP_EOL;
34-
printf('Euclidean sub: %s', euclid_sub(128 * 12, 128 * 77));
34+
printf('[#]'.PHP_EOL.'Subtraction-based euclidean algorithm result:'.PHP_EOL.'%s', euclid_sub(128 * 12, 128 * 77));
3535
echo PHP_EOL;

0 commit comments

Comments
 (0)