blob: c677dd12cad1c71b88894d976362b7e6e7ec4d12 [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.experimental
public expect interface Runnable {
public fun run()
}
@Suppress("FunctionName")
public expect inline fun Runnable(crossinline block: () -> Unit): Runnable