import Foundation
func print(name: String = "****") {
print("Hello, \(name)")
}
// Calling the function without an argument uses the default value
print()
// Calling the function with an argument overrides the default value
print(name: "Swift")
/*
run:
Hello, ****
Hello, Swift
*/