module IO::Stream::Writable

def <<(string)

@parameter string [String] the string to write to the stream.
Appends `string` to the buffer and returns self for method chaining.
def <<(string)
	write(string)
	
	return self
end