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
/// Returns the sum of two integers. /// - Parameters: a, b /// - Returns: a + b func add(_ a: Int, _ b: Int) -> Int { a + b } print(add(2, 3))