みんなで swift 復習会 go! in 福岡 – 5th′

Post on 21-Jan-2018

108 Views

Category:

Software

3 Downloads

Preview:

Click to see full reader

TRANSCRIPT

#minna_de_swift

switch v {

case pattern1: print("match 1")

case pattern2: print("match 2")

default: print("others") }

switch device {

case "iPhone 6": print("6")case "iPhone 7", "iPhone 7 PLUS": print("7")case let x where x.hasSuffix("X"): print("X")default: print("?")}

top related