``` fun f() = "boo" f() boo fun f() = "bar" f()...
# announcements
c
Copy code
fun f() = "boo"

f()
boo

fun f() = "bar"

f()
bar