aboutsummaryrefslogtreecommitdiff
path: root/algebraic-structures.private.list.alternative.scm
blob: 5395ded4c75f7a618bafdc8957447f408cbb111c (about) (plain)
1
2
3
4
5
6
7
8
9
10
(module (algebraic-structures private list alternative) (alt empty)
  (import (except scheme map apply)
          (chicken module)
          (only (algebraic-structures list applicative)))
  (reexport (algebraic-structures list applicative))

  (define empty '())

  (define (alt xs ys)
    (append xs ys)))