Is there a way to make a method that can accept a parameter, but can also be called without one, in which case the parameter is regarded nil like the following?
nil
def some_func(variable = nil) ... end