Arc Forumnew | comments | leaders | submitlogin
3 points by Zak 5928 days ago | link | parent

Note also that I don't want to have to call par when the function takes a fixed number of arguments. I want to be able to do this:

  (= foo (cons 'bar))
  => #<procedure: foo>
  (foo 'baz)
  => (bar . baz)


1 point by sjs 5927 days ago | link

I think this would be great, but it'll take some work. For example right now Arc compiles s-exps to mzscheme, so it would need to change mzscheme's semantics (not sure if this is even practical or possible). Arc most likely needs to stand on its own a little more before this will be feasible.

-----