;; Un-qualified identifiers (define (srfi-29-test-0) 0) (define (srfi-29-test-1 a) (- a)) (define (srfi-29-test-N . args) args) ;; Qualified identifiers (module srfi-29-test (test-star) (import scheme chicken) (define (test-star x) (list '* x)) ) ;module srfi-29-test