Skip to content

Commit 3095ea8

Browse files
committed
Standardize powershell output
1 parent 42fd666 commit 3095ea8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contents/euclidean_algorithm/code/powershell/euclidean_algorithm.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ function Mod-Euclid($a, $b) {
2626
return $a
2727
}
2828

29-
Write-Host "Subtraction-based euclidean algorithm result: $(Mod-Euclid $(64 * 67) $(64 * 81))"
30-
Write-Host "Modulus-based euclidean algorithm result: $(Sub-Euclid $(128 * 12) $(128 * 77))"
29+
Write-Host "[#]`nSubtraction-based euclidean algorithm result:`n$(Mod-Euclid $(64 * 67) $(64 * 81))"
30+
Write-Host "[#]`nModulus-based euclidean algorithm result:`n$(Sub-Euclid $(128 * 12) $(128 * 77))"

0 commit comments

Comments
 (0)