# function_default_argument.rb

def print_line length = 20
  puts '_'*length
end

print_line
print_line 40
