diff options
| author | Baitinq <[email protected]> | 2025-06-07 00:39:08 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-06-07 00:39:08 +0200 |
| commit | cc6f57ddb6537146d37ff1cf83743ed19e7d13df (patch) | |
| tree | f7ba7afb258fc584cc5406502a561ad0d5d5970a /std | |
| parent | Feature: Typecheck on struct field assignment (diff) | |
| download | interpreter-cc6f57ddb6537146d37ff1cf83743ed19e7d13df.tar.gz interpreter-cc6f57ddb6537146d37ff1cf83743ed19e7d13df.tar.bz2 interpreter-cc6f57ddb6537146d37ff1cf83743ed19e7d13df.zip | |
Bootstrap: Codegen: Generate number literals
Diffstat (limited to 'std')
| -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); }; |