class IO::Stream::Generic

def <<(string)

Writes `string` to the stream and returns self.
def <<(string)
	write(string)
	
	return self
end