// OPTION: 1 fun foo(n: Int): Int { return if (n > 0) { n + 10 } else { n - 10 } }