exit CommandThe exit command exits the current event handler or function without returning a value. It's equivalent to return with no expression.
<button _="on click
if I match .disabled
exit
end
put 'clicked!' into me
">Click Me</button>
exit