End

Terminates the program immediately

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

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.

Example

Example.bam
; No example implemented yet