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

I think that should be platform-independent:

  arc> (load "foo.arc")
Am I misunderstanding your question?

(Sorry about the delay in noticing your question.)



2 points by zck 3911 days ago | link

This should work as long as foo.arc is in the same directory you're running Arc out of.

If your file is somewhere else, you'll have to specify the full path to it (warning: untested):

  arc> (load "C:\\Users\\Benben\\Documents\\foo.arc")

-----