一个有关Scala的简单问题 - ITeye问答
2009年7月14日 - 一个有关Scala的简单问题10object extendBuiltins extends Application { def fact(n: Int): BigInt = if (n == 0) 1 else fact(n-1) * n class ...
一个简单的.scala程序怎么写_百度知道
最佳答案: object Main { def main(args : Array[String]) = println("Hello World!") }更多关于一个有关Scala的简单问题的问题>>