Skip to content

Instantly share code, notes, and snippets.

@twof
Created January 27, 2017 07:46
Show Gist options
  • Select an option

  • Save twof/f8d2013c397ab2349315de4c0c9e173a to your computer and use it in GitHub Desktop.

Select an option

Save twof/f8d2013c397ab2349315de4c0c9e173a to your computer and use it in GitHub Desktop.
func swapTwoInts(_ a: inout Int, _ b: inout Int) {
let temporaryA = a
a = b
b = temporaryA
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment