6 lines
97 B
Scala
6 lines
97 B
Scala
object HelloWorld {
|
|
def main(args: Array[String]): Unit = {
|
|
println("Hello, world!")
|
|
}
|
|
}
|