mention.scm 355 B

12345678910
  1. ;; IMPORTANT!
  2. ;; If the module is defined in a subdirectory, the subdirectory must be
  3. ;; mentioned as in this example and the names must be equal to the subdirectory
  4. ;; name and the file name of the file, which defines the module.
  5. (define-module (subdir mention))
  6. (define-public mention-bertified
  7. (λ (name)
  8. (display (string-append name "bert"))))