object Arity1 extends App{
def say(something:String) = println(something)
say ("this works")
this say "this too"
say "this shouldn't?"
}
最後のステートメントは理にかなっています、コンパイルしない理由は何でしょうか?
object Arity1 extends App{
def say(something:String) = println(something)
say ("this works")
this say "this too"
say "this shouldn't?"
}
最後のステートメントは理にかなっています、コンパイルしない理由は何でしょうか?