“Función kotlin” Código de respuesta

cómo escribir una función en kotlin

// Use 'fun' keyword to declare function
// 'num' is the parameter and is of type Int
// The ':Int' indicates the return type
fun square(num: Int):Int {
    return num * num
}
Noob_Code

Función kotlin

fun main(args: Array<String>) {

    var number = 5.5
    print("Result = ${Math.sqrt(number)}")
}
SAMER SAEID

Kotlin ¿Cómo llamar a una función?

callme()
SAMER SAEID

Programa de función simple de Kotlin

fun callMe() {
    println("Printing from callMe() function.")
    println("This is cool (still printing from inside).")
}

fun main(args: Array<String>) {
    callMe()
    println("Printing outside from callMe() function.")
}
SAMER SAEID

función en kotlin

kotlin function
Nasty Newt

Respuestas similares a “Función kotlin”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código