Swift - Basics and Runtime
What will the following Swift code output?
/// Adds two numbers
func add(_ a: Int, _ b: Int) -> Int {
return a + b
}
print(add(3, 4))