Yes, with ‘library’ or ‘define-library’ forms.
 
(see https://www.gnu.org/software/guile/manual/html_node/R6RS-Libraries.html)

(library (insert name here)
  (export [insert exports here])
  (import
    (guile) ; standard imports
    (rename (ice-9 popen) (open-pipe pipe-open)))
  [insert definitions here])

Reply via email to