Launch a command with some arguments

Property definitions

core $ Process :: defaultinit
	# Launch a command with some arguments
	init(command: Text, arguments: Text...) is old_style_init do
		self.command = command
		self.arguments = arguments
		execute
	end
lib/core/exec.nit:83,2--88,4