Skip to content

Instantly share code, notes, and snippets.

@sergueyarellano
Created May 13, 2021 19:36
Show Gist options
  • Save sergueyarellano/26546e5178d780bb8ee52828efa01dab to your computer and use it in GitHub Desktop.
Save sergueyarellano/26546e5178d780bb8ee52828efa01dab to your computer and use it in GitHub Desktop.
func addOne(_ num: Int) -> Int {
return num + 1
}
addOne(2) // 3
addOne(3) // 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment