We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af92a67 commit 637f6c4Copy full SHA for 637f6c4
src/builtin.c
@@ -645,7 +645,7 @@ static void assert_call(HkState *state, HkValue *args)
645
state->flags |= HK_STATE_FLAG_NO_TRACE;
646
state->status = HK_STATE_STATUS_ERROR;
647
HkString *str = hk_as_string(args[2]);
648
- fprintf(stderr, "assertion failed: %.*s\n", str->length, str->chars);
+ fprintf(stderr, "assert: %.*s\n", str->length, str->chars);
649
}
650
651
static void panic_call(HkState *state, HkValue *args)
0 commit comments