val x: Any
x = "Hello"
if (x is String) {
		print(x.length) //x 는 자동적으로 String으로 스마트 캐스트 된다.
}