1(define-module foo.bar3
2  (use foo.bar2)
3  (export bar3))
4(select-module foo.bar3)
5
6(define (bar3 n)
7  (bar2 (/ n 2)))
8