Another way to write the function signature is `fu...
# getting-started
j
Another way to write the function signature is
fun <T, R> map(source: List<T>, transform: (T) -> R): List<R>
(you should replace
this
with
source
in the body of the function if you use this signature)