fun verify(x: Int): Int {
var a = x
if(a < 0){
a += (2*a)
return a
}else{
println("")
}
}
This last bracket shows an error and says to remove the: Int value after the bracket in fun verify but when I do it it just not returning a value. any alt or solution, please?