var someAny: Any = 100
someAny = "어떤 타입도 가능"
someAny = 123.12
let someDouble: Double = someAny
// Cannot convert value of type 'Any' to specified type 'Double'
class SomeClass {}
var someAnyObject: AnyObject = SomeClass()
someAnyObject: 123.12
// Value of type 'Double' does not conform to 'AnyObject' in assignment
var array: Array<Int> = []
// array는 빈 배열이 존재하는 empty 상태이며, nil과 다르다.