原创 Scala 學習筆記

val hello = "Hello World" println(hello) //函數聲明 def min(x:Int, y:Int):Int = { var a = x if(x > y) a = y return a } /