我是 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 的好网站。