Hacker News new | ask | show | jobs
by infraruby 3696 days ago
Yes:

  def f(n = 16)
    n
  end

  p f # => 16
  p f(nil) # => nil