In the Introduction to Swift WWDC session, a read-only property description is demonstrated:
description
class Vehicle { var numberOfWheels = 0 var
There is a difference: If you use a property you can then eventually override it and make it read/write in a subclass.