class MyClass{ // stored property var variable : Int /** * The constructor */ init() { self.variable = 42 } /** * A method */ func someMethod() { self.variable = 1 } }