Skip to content

Instantly share code, notes, and snippets.

@mosluce
Created August 18, 2016 05:08
Show Gist options
  • Select an option

  • Save mosluce/4e90ad30cccfca1ccdd54beae17467de to your computer and use it in GitHub Desktop.

Select an option

Save mosluce/4e90ad30cccfca1ccdd54beae17467de to your computer and use it in GitHub Desktop.
Swift Function: 無限參數
//: Playground - noun: a place where people can play
import UIKit
func hello(people: String...) {
for person in people {
let str = "Hello \(person)"
print(str)
}
}
hello("mos", "pofat", "yuyu")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment