basyura's blog

あしたになったらほんきだす。

コップ本とどいたー

勉強開始。
関数定義。全部書いた場合。

def hello(x: String) : String = {
  return "hello " + x
}

return を省略できる

def hello(x: String) : String = {
  "hello " + x
}

一行にする

def hello(x: String) = "hello " + x

こうすると・・・void になる??

def hello(x: String) {
  "hello " + x
}
print(hello("basyura")) //=> ()
print(hello("basyura").getClass) 
//=>class scala.Predef$$anon$1

読み進めよう。