Part 17 – Single-Expression Functions Watch the next part In part 17 of the Kotlin beginner tutorial, we will learn how to use the single-expression syntax for functions that only consist of one expression. Show moreShow less KotlinTutorial.kt fun main() { println(double(12)) } fun double(num: Int) = num * 2