class Console::Output::Null

A null output that does nothing.

def call(...)

Do nothing.
def call(...)
end

def initialize(...)

Create a new null output.
def initialize(...)
end

def last_output

The last output is always self.
def last_output
	self
end