Skip to content

Instantly share code, notes, and snippets.

@goodmorningcody
Created April 24, 2016 05:33
Show Gist options
  • Save goodmorningcody/ceb3fba7423e235f206c7ca2368e9310 to your computer and use it in GitHub Desktop.
Save goodmorningcody/ceb3fba7423e235f206c7ca2368e9310 to your computer and use it in GitHub Desktop.
스위프트 : 매개변수 타입으로의 튜플
func calcRectArea(rect:(width:Float, height:Float)) -> Float {
return rect.width*rect.height
}
calcRectArea((width:100, height:200))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment