function syntax ruby code example
Example 1: ruby function
def double(x)
x * 2
end
Example 2: functions in ruby
# functions in ruby
def foo()
# function body
end
def double(x)
x * 2
end
# functions in ruby
def foo()
# function body
end