Skip to content

Commit 328e8a4

Browse files
committed
Standardize kotlin output
1 parent 27afabf commit 328e8a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

contents/euclidean_algorithm/code/kotlin/Euclidean.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ fun euclidMod(a: Int, b: Int): Int {
2626
}
2727

2828
fun main(args: Array<String>) {
29+
println("[#]\nModulus-based euclidean algorithm result:")
2930
println(euclidSub(128 * 12, 128 * 77))
31+
println("[#]\nSubtraction-based euclidean algorithm result:")
3032
println(euclidMod(64 * 67, 64 * 81))
3133
}

0 commit comments

Comments
 (0)