The parentheses in the call are optional : Method Arguments « Method « Ruby
- Ruby
- Method
- Method Arguments
The parentheses in the call are optional
def greeting(message)
puts message
end
greeting "Hello from Ruby."
Related examples in the same category