val numbers = arrayOf(10, 20, 30, 5, 15) // 查找数组中的最小值 val minValue = numbers.minOf { it } // 输出:最小值: 5 _console.log("最小值: ", minValue)