I noticed that the compiler won\'t let me override a stored property with another stored value (which seems odd):
class Jedi { var lightSaberColor = \"Bl
class SomeClass { var hello = "hello" } class ChildClass: SomeClass { override var hello: String { set { super.hello = newValue } get { return super.hello } } }