Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 524 Bytes

sigabrt.md

File metadata and controls

24 lines (18 loc) · 524 Bytes
private void this_will_crash ()
{
	var hi = "johnny !" ;
	assert (hi == "wiseau");
	message ("I haven't crashed") ;
}

int main (string[] args) {
	Stacktrace.register_handlers () ;
	
	stdout.printf("  This program will crash with a failed assert!\n" ) ;
	
	this_will_crash () ;
	return 0 ;
}

Signal intercepted: SIGABRT