Scala (1) 썸네일형 리스트형 Getting Started with Scala http://www.scala-lang.org The "Hello, world!" Program As a first example, we use the standard Hello world program to demonstrate the use of the Scala tools without knowing too much about the language. 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 ou..