Kotlin will automatically create an Anonymous Class to handle passing the lambda, so all that needs to be done is to pass the lambda as an argument!
somethingYouNeedToAccessFromKotlin(36) {println("IDIOT")}
void somethingYouNeedToAccessFromKotlin(int arg1, Runnable computation){//Do Stuff
}