Start executing this thread

Will launch main on a different thread.

Property definitions

pthreads $ Thread :: start
	# Start executing this thread
	#
	# Will launch `main` on a different thread.
	fun start
	do
		if native != null then return
		native = new NativePthread.create(self)
	end
lib/pthreads/pthreads.nit:328,2--335,4

app $ AsyncHttpRequest :: start
	redef fun start
	do
		before
		super
	end
lib/app/http_request.nit:84,2--88,4