diff options
Diffstat (limited to '')
| -rw-r--r-- | std/stdlib.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/stdlib.src b/std/stdlib.src index 90e28d6..9164f67 100644 --- a/std/stdlib.src +++ b/std/stdlib.src @@ -82,7 +82,7 @@ let iswhitespace = (c: i8) => bool { let assert = (cond: bool) => void { if !cond { - println("UNREACHABLE"); + println("ASSERTION FAILED"); exit(1); }; |