Skip to content

Instantly share code, notes, and snippets.

@ktanaka117
Created March 1, 2018 01:35
Show Gist options
  • Save ktanaka117/b64ba2c7e6c3daef28267462303ba48e to your computer and use it in GitHub Desktop.
Save ktanaka117/b64ba2c7e6c3daef28267462303ba48e to your computer and use it in GitHub Desktop.
こんなかんじのコードだっけか? #CodePiece #tryswiftconf
func f(_ arg: inout String) {
arg = "🐥"
arg = "🐓"
}
var egg: String = "🥚" {
didSet { print(oldValue) }
}
f(&egg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment