Hacker News new | ask | show | jobs
by roebk 1877 days ago
Elm has `Debug.todo`. If you were to use this, it allows your app to compile in development but the app would crash should it hit this code.

Elm's compiler will prevent you from creating a production application with a `Debug.todo` still in place.