From 035bf033a57e20f407e88c851957b1563008f7ea Mon Sep 17 00:00:00 2001 From: "Kelvin S. do Prado" Date: Mon, 28 Oct 2024 21:21:05 -0300 Subject: [PATCH] Remove trailing whitespace --- src/scala/Exponentiation.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scala/Exponentiation.scala b/src/scala/Exponentiation.scala index 12ca02db..0640a121 100644 --- a/src/scala/Exponentiation.scala +++ b/src/scala/Exponentiation.scala @@ -3,7 +3,7 @@ def exponentiation(base: Int, exponent: Int): Int = { .map(_ => base) .reduce(_ * _) } - + object Main extends App { println("5 ^ 3 = " + exponentiation(5, 3)) -} \ No newline at end of file +}