diesieben07
Lazy
fun myFunction(paramLazy: Lazy<String>) { val param by paramLazy } myFunction(lazy { "hello" + "world" })