Ruby - Control Flow
You want to write a Ruby method
process_order(order) that returns "Invalid order" immediately if order is nil or empty. Otherwise, it returns "Processing order". Which is the best way to write this using guard clauses?