Skip to content

Commit 6e6afe2

Browse files
author
Michał Wiącek
committed
reformat code
1 parent 3991fcb commit 6e6afe2

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

  • frontend/src/test/resources/resources-only-downstream-project/project-b/src/main/scala
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import scala.io.Source
22

3-
@main def main() =
4-
val text = Source.fromResource("test.txt").getLines().mkString
5-
println(text)
3+
object Main {
4+
def main(args: Array[String]): Unit = {
5+
val text = Source.fromResource("test.txt").getLines().mkString
6+
println(text)
7+
}
8+
}

0 commit comments

Comments
 (0)