The source code to pass an automatic closure as a function parameter is given below. The given program is compiled and executed successfully.
// Swift program to pass an automatic closure
// as a function parameter
import Swift
func MyFun(SayHello: @autoclosure() -> ())
{
SayHello()
}
MyFun(SayHello : print("Hello World"))
Output:
Hello World
...Program finished with exit code 0
Press ENTER to exit console.
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
import Swift
Here, we created a function MyFun(). The MyFun() function used automatic closure as a parameter. Then we called SayHello() closure from MyFun() function and printed the message on the console screen.
Program/Source Code:
The source code to pass an automatic closure as a function parameter is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we imported a package Swift to use the print() function using the below statement,
Here, we created a function MyFun(). The MyFun() function used automatic closure as a parameter. Then we called SayHello() closure from MyFun() function and printed the message on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer