Guest User

Untitled

a guest
Dec 14th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. (define (counter% i)
  2. (make-object
  3. (list 'get (lambda (s al) i))
  4. (list '+ (lambda (s al) (counter% (+ (s 'get) (car al)))))
  5. (list '- (lambda (s al) (counter% (- (s 'get) (car al)))))))
Add Comment
Please, Sign In to add comment