fun somethingOrNull(bool: Boolean): String? { if(bool) return "something" // return null is implicitly inferred } fun nullableUnit(): Unit? { // what happens here? // currently is a compiler error, so maybe null? }