Contact: aviboots(AT)netvision.net.il
39,971 questions
51,913 answers
573 users
import Foundation let (a, b, c, d, e) = (1, "Swift", 3.14, -2.0, -5) print("\(a) \(b) \(c) \(d) \(e)") print(type(of: a), type(of: b), type(of: c), type(of: d), type(of: e)) /* run: 1 Swift 3.14 -2.0 -5 Int String Double Double Int */