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

  (define (op x y) (* x y))

  (define unit 1)

  (define (inv x) (/ x)))