Launch a simple command with arguments passed as an array

Property definitions

core $ Process :: from_a
	# Launch a simple command with arguments passed as an array
	init from_a(command: Text, arguments: nullable Array[Text])
	do
		self.command = command
		self.arguments = arguments
		execute
	end
lib/core/exec.nit:90,2--96,4