faculty.scala:3 error: recursive method faculty needs result type def faculty(x: int) = if (x == 0) 1 else x * faculty(x - 1) ^ one error found