class Samovar::Nested

def parse(input)

def parse(input)
	if command = @commands[input.first]
		input.shift
		
		# puts "Instantiating #{command} with #{input}"
		command.new(input)
	end
end