包定义package my.demo
import kotlin.text.*
函数fun sum(a: Int, b: Int): Int {
return a + b
}
注意这里带有两个参数a和b都是int类型,返回的是i
2020-10-21