Ruby - Methods
How would you modify this method to provide a default value for
name so it prints "Hello, Guest!" if no argument is given?def greet(name)
"Hello, #{name}!"
end