Ruby - Control Flow
How can you combine multiple guard clauses to check for nil or empty input before processing?
def process(input)
# guard clauses here
"Processed #{input}"
end