Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
class Math { class func square(_ n: Int) -> Int { n * n } // overridable in subclasses static func cube(_ n: Int) -> Int { n * n * n } // not overridable } print(Math.square(4)) print(Math.cube(3))