(define y 1)(define (f x) (set! y (* y x)) y);trying on MIT/GNU Scheme 1 ]=> (+ (f 0) (f 1));Value: 1;so arguments are evaluated right to left
No comments:
Post a Comment