Part 17 – Single-Expression Functions

KotlinTutorial.kt
fun main() {
    println(double(12))
}

fun double(num: Int) = num * 2