Arc Forumnew | comments | leaders | submitlogin
"procedures" vs "functions"
2 points by xTERM 6075 days ago | 1 comment
You made Arc to print #<procedure: *> when a function being defined. LISP is known as a "functional language", so "procedure" word is not suitable. I think you should call it "functions", but not "procedures".


3 points by parenthesis 6075 days ago | link

It's just because it's mzscheme doing the printing: that's how it does it. Functions are called 'procedures' in scheme. But they are called 'functions' in Arc.

-----