4 examples for exit

{{ score }}
  # exit the shell
exit
        
{{ score }}
  # exit the current process successfully
exit(EXIT_SUCCESS);
        
{{ score }}
  # Terminate the current script with an exit status indicating failure
exit 1
        
{{ score }}
  # Terminate the current script with an exit status indicating success 
exit 0