Y
Hacker News
new
|
ask
|
show
|
jobs
by
iaabtpbtpnn
1291 days ago
There's always an escape hatch for this. Even in Java (and Haskell), you can just throw an unchecked exception from your unimplemented function.
1 comments
josephg
1291 days ago
Likewise in Rust you can todo!() in incomplete functions. But it’s still much harder to run incomplete code than it is in javascript, because you still need to satisfy the type checker and borrow checker even for incomplete programs.
link