私は scala の初心者で、このサンプル コードを実行しようとしています。
def isLast(c: Int, r: Int):Int ={
if(r == 1)
{
return 1;
}
else if (r == c){
return 1
}
}
しかし、それは私にコンパイル時エラーを与えます
Multiple markers at this line
- type mismatch; found : Unit required: Int
- type mismatch; found : Unit required: Int
親切に私を助けてください。また、scala を学習するための良いサイトを教えてください。