9 lines
161 B
Kotlin
9 lines
161 B
Kotlin
package net.sergeych.ling
|
|
|
|
class IfScope(val isTrue: Boolean) {
|
|
|
|
fun otherwise(f: ()->Unit): Boolean {
|
|
if( !isTrue ) f()
|
|
return false
|
|
}
|
|
} |