aboutsummaryrefslogtreecommitdiff
path: root/algebraic-structures.private.number.sum.scm
blob: c0db2269766003a8ca1c137f27324e86d6a0dc49 (about) (plain)
1
2
3
4
5
6
7
8
(module (algebraic-structures private number sum) (<> unit inv)
  (import scheme)

  (define (<> x y) (+ x y))

  (define unit 0)

  (define (inv x) (- x)))