Ruby - Ecosystem and Best Practices
You want to define a Ruby method that returns a greeting with a name variable. Which style is best according to the Ruby style guide essentials?
def greetUser(name) return 'Hello, ' + name + '!' end
