kevinmost
02/10/2017, 12:21 AMfun printNumberSign(num: Int) {
if (num > 0) {
"positive"
} else if (num < 0) {
"negative"
} else {
"zero"
}.let { print(it) }
}
fun main(args: Array<String>) {
printNumberSign(1)
}
Maybe it's obvious to others... what does everyone think this will do?