Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Terminates the program immediately
Technical Exegesis...
Terminates the program immediately. Stops all execution and exits the application. Unlike Return which only exits a function, End completely stops the entire program. Use sparingly, typically for unrecoverable errors or when user explicitly requests to quit the application.