Arc Forumnew | comments | leaders | submitlogin
3 points by akkartik 5083 days ago | link | parent

So far I've avoided arc-style optional args. Following javascript, all args are optional. But if you want to give them a default, the only way so far is explicit:

  def func(req opt)
    or= opt default
    ...