Which built-in function is used to stop a program from continuing?
panic
raiseException
exit
The built-in function used to stop a program from continuing is panic(). When panic() is called, it triggers a panic, which stops the normal execution flow of the program and begins panicking. If the panic is not recovered, the program terminates.
panic()
There is no such function.