module Console::Terminal

def self.for(io)

def self.for(io)
	if io.tty?
		XTerm.new(io)
	else
		Text.new(io)
	end
end