首页 > 代码库 > Scala Hello 实例

Scala Hello 实例

object ScalaDemo1 {

  def main(args: Array[String]) {
    println("Hello,world!");
  }
}