is
키워드를 사용
하면 자료형을 검사할 수 있다.
val num = 256 if (num is Int) { print(num) //256 } else if (num !is Int) { print("Not a Int") }