blob: a386e81d881908150c0641ddd7b7a4add1b12728 (
plain)
1
2
3
4
5
6
7
8
9
|
(module (algebraic-structures private list alternative) (alt empty)
(import (except scheme map apply)
(chicken module))
(reexport (algebraic-structures list applicative))
(define empty '())
(define (alt xs ys)
(append xs ys)))
|