// HIGHLIGHT: INFORMATION fun sign(x: Int): Int { return when { x < 0 -> -1 x > 0 -> 1 else -> 0 } }