Property definitions

pthreads $ HWTask :: defaultinit
# Task printing "hello world" on standard output
class HWTask
	super JoinTask

	# Sleeping time
	var sec: Int

	# id
	var id: Int
	redef fun main do
		print "Hello from {id}"
		nanosleep(sec, 0)
		print "World from {id}"
	end
end
lib/pthreads/examples/threadpool_example.nit:20,1--34,3