A Ruby-ized realization of the K combinator, courtesy of Mikael Brockman.
def foo returning values = [] do values << 'bar' values << 'baz' end end foo # => ['bar', 'baz']
[Validate]