Property definitions

core $ Task :: defaultinit
# Task with a `main` method to be implemented by subclasses
#
# This class is provided for compatibility between different parallelization systems.
# It can be used to run a fragment of code on a different thread and
# to register a reaction to UI events.
interface Task

	# Main method of this task
	fun main do end
end
lib/core/kernel.nit:1088,1--1097,3