throw
The throw command throws an exception, just like in JavaScript.
<script type="text/hyperscript"> def throwsIfTrue(value) if value throw "Yep!" end </script>
throw <expression>