A chemical plant engineer writes a control script designed to monitor a reactor's temperature, but accidentally creates an infinite loop:
SET temperature TO 95
WHILE temperature >= 80
OUTPUT "Reactor status: Stable..."
ENDWHILE
State one action the engineer can take to force this program to stop running when it is executing in an Integrated Development Environment (IDE) or command line console.