If you change `var a: Int` to `var a: Int?` it sho...
# announcements
d
If you change
var a: Int
to
var a: Int?
it should compile, but the results will be different (there will be a backing Integer instead of an int).