f8f01941a8
Merge-request: KT-MR-6597 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
48 lines
867 B
Kotlin
48 lines
867 B
Kotlin
/*
|
|
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
fun helloChar(value: Char?) {
|
|
println("helloChar")
|
|
}
|
|
|
|
fun helloByte(value: Byte?) {
|
|
println("helloByte")
|
|
}
|
|
|
|
fun helloShort(value: Short?) {
|
|
println("helloShort")
|
|
}
|
|
|
|
fun helloInt(value: Int?) {
|
|
println("helloInt")
|
|
}
|
|
|
|
fun helloLong(value: Long?) {
|
|
println("helloLong")
|
|
}
|
|
|
|
fun helloUByte(value: UByte?) {
|
|
println("helloUByte")
|
|
}
|
|
|
|
fun helloUShort(value: UShort?) {
|
|
println("helloUShort")
|
|
}
|
|
|
|
fun helloUInt(value: UInt?) {
|
|
println("helloUInt")
|
|
}
|
|
|
|
fun helloULong(value: ULong?) {
|
|
println("helloULong")
|
|
}
|
|
|
|
fun helloFloat(value: Float?) {
|
|
println("helloFloat")
|
|
}
|
|
|
|
fun helloDouble(value: Double?) {
|
|
println("helloDouble")
|
|
} |