<@U23GH6RGS> I always use the following `BlackHole...
# announcements
v
@nish I always use the following
BlackHole
class for such cases:
Copy code
object BlackHole {
  operator fun invoke(any: Any?) = Unit
}
...
val three = Random().nextInt()
BlackHole(when (three) {
  3 -> {"Oh look it's three"}
})
doSomethingElse()