Ends self, cancel ongoing work abrutly

Pretty dangerous to use

Property definitions

actors $ Actor :: kill
	# Ends `self`, cancel ongoing work abrutly
	# Pretty dangerous to use
	fun kill do
		var n = self.native
		if n != null then n.cancel
	end
lib/actors/actors.nit:54,2--59,4