11 lines
149 B
Kotlin
11 lines
149 B
Kotlin
package second
|
|
|
|
fun String.helloFun() {
|
|
}
|
|
|
|
fun String.helloWithParams(i : Int) : String {
|
|
return ""
|
|
}
|
|
|
|
fun String.helloFunPreventAutoInsert() {
|
|
} |