interface: ``` interface Transformer<T> { f...
# getting-started
p
interface:
Copy code
interface Transformer<T> {
 fun apply(value: T): Any?
}
val t: Transformer<String> = { v -> v }
why doesnt this compile?