"Hello, world!" 程序
作为第一个例程,我们用标准的 Hello world程序来证明不需太多了解Scala就可以使用Scala tools。
object HelloWorld { def main(args: Array[String]) { println("Hello, world!") } }
The structure of this program should be familiar to Java programmers: it consists of the method main
which prints out a friendly greeting to the standard output.
对于Java程序员,这种编程结构应该很熟悉。它包含一个main方法,能打印出一个友好的问候语的标准输出。