// script abstract class Person { abstract val name: String } fun foo(action: () -> Int) { action() } foo { 42 + 42 }