about summary refs log tree commit diff
path: root/std
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-06-07 00:39:08 +0200
committerBaitinq <[email protected]>2025-06-07 00:39:08 +0200
commitcc6f57ddb6537146d37ff1cf83743ed19e7d13df (patch)
treef7ba7afb258fc584cc5406502a561ad0d5d5970a /std
parentFeature: Typecheck on struct field assignment (diff)
downloadinterpreter-cc6f57ddb6537146d37ff1cf83743ed19e7d13df.tar.gz
interpreter-cc6f57ddb6537146d37ff1cf83743ed19e7d13df.tar.bz2
interpreter-cc6f57ddb6537146d37ff1cf83743ed19e7d13df.zip
Bootstrap: Codegen: Generate number literals
Diffstat (limited to 'std')
-rw-r--r--std/stdlib.src2
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);
 	};