Arc Forumnew | comments | leaders | submitlogin
1 point by gus_massa 5159 days ago | link | parent

I think that pr should return the last value, because to be consistent with other operators for multiple expressions. For example:

  (do 1 2 3) => 3
  (pr 1 2 3) => 1
  ((fn() 1 2 3)) => 3