Remix.run Logo
vaylian a day ago

> Because exceptions are not a goto anymore than a return is a goto

Not true at all

* goto goes to a specific hard-coded address

* return looks up the previous address from the stack and goes there

* exceptions are a complex mess that require branching logic to determine where to resume execution

abtinf 20 hours ago | parent [-]

Very well put.