RosettaCodeData/Task/Null-object/Swift/null-object-1.swift

3 lines
113 B
Swift

var opt : Int? = nil // use "nil" to represent no value
opt = 5 // or simply assign a value to the optional type