简单类型 / 数字 / 数学运算

import kotlin.math.sqrt

val number = 100.0
val result = sqrt(number)
//result is 10.0

println("result is $result")