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

  (define (<> x y) (* x y))

  (define unit 1)

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