BYE ends the program execution
CONTROLS
BYE
No arguments
/RETURN - ends or quits the program and RETURNS the control to the calling program.
BYE is what QUIT is for Rebol. BYE is used to end the program before the end of the script is reached.
An example to make sure the program does not continue after a blocking issue has been detected.
data-file= ./meta.data
Either metadata: try open data-file [
write/line "File exists, it is save to continue now"
][
write/line "Not able to open file"
BYE
]
To be done. No other related method names assigned yet.