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
func increment(_ value: inout Int, by step: Int = 1) { value += step } var x = 10 increment(&x) print(x) func sum(_ nums: Int...) -> Int { nums.reduce(0, +) } print(sum(1,2,3))