How do I call this function? ```fun <B: (B) -&g...
# functional
d
How do I call this function?
Copy code
fun <B: (B) -> B> rec(arg: B): B {
    return arg(arg)
}
🧌 2