Quit the program with a specific return code

Property definitions

core $ Sys :: exit
# Quit the program with a specific return code
fun exit(exit_value: Int) is intern
lib/core/kernel.nit:302,1--303,35

hash_debug :: hash_debug $ Sys :: exit
redef fun exit(i)
do
	if sys.auto_hash_display then sys.show_hash_stats
	super
end
lib/hash_debug/hash_debug.nit:130,1--134,3

array_debug :: array_debug $ Sys :: exit
redef fun exit(i)
do
	sys.print_stats
	super
end
lib/array_debug/array_debug.nit:65,1--69,3

text_stat :: text_stat $ Sys :: exit
redef fun exit(i) do
	show_string_stats
	super
end
lib/text_stat/text_stat.nit:128,1--131,3