<@U1H2QGNDC> yes what i need for is to check multi...
# announcements
a
@bamdmux yes what i need for is to check multiple "instance type" in the same “case” block like below
Copy code
when(x) {
 is String, is Int -> {
    print("x is an integer or string")
 }
 else -> {
    print("x is unknown")
    }
}