let firstName = "Grace" let lastName = "Hopper" let fullName = "\(firstName) \(lastName)" print(fullName) // Grace Hopper let a = 6 let b = 7 print("\(a) times \(b) is \(a * b)") // 6 times 7 is 42
Click Run to execute this code.