Hacker News new | ask | show | jobs
by steveklabnik 3344 days ago
A panic is significantly different than an actual out of bound access; the latter is the cause of a lot of issues, but a panic is preventing those issues.
1 comments

Ah I get you! You can't read past the end of an array, but you can get an error.
Exactly!