You should be able to, ie. ```fun <T> exampl...
# announcements
d
You should be able to, ie.
Copy code
fun <T> example(input: String, factory: (String) -> T) {
  return factory(input)
}
works.
👍 3