Ruby - Methods
The following Ruby method is intended to return the string "Done", but it returns
nil instead. What is the error?def finish puts "Done" end result = finish puts result.inspect
