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