Do I remember incorrectly? I think I was able to d...
# announcements
m
Do I remember incorrectly? I think I was able to do:
Copy code
val r: Runnable = {
}
and now I can only do
Copy code
val r: Runnable = Runnable {
}
or shorter
Copy code
val r = Runnable {
}