<@U65N78GSZ> Assuming you're talking about somethi...
# announcements
d
@jokr Assuming you're talking about something like
val foo = Runnable { /* ... */ }
, then no, unfortunately. You will have to use an anonymous class:
Copy code
val foo = object : Runnable {
  override fun run() { /* ... this ... */ }
}