I you insist: `fun <T> tail(ls: List<T&gt...
# getting-started
k
I you insist:
fun <T> tail(ls: List<T>) = run { ls.drop(1) }
👍 2