mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 04:10:18 +02:00
17 lines
464 B
Scheme
17 lines
464 B
Scheme
;;; examples/box-dynamic-module/box-module.scm -- Scheme part of the
|
|
;;; dynamic module (box-module)
|
|
|
|
;;; Commentary:
|
|
|
|
;;; This is the Scheme part of the dynamic library module (box-module).
|
|
;;; When you do a (use-modules (box-module)) in this directory,
|
|
;;; this file gets loaded and will load the compiled extension.
|
|
|
|
;;; Code:
|
|
|
|
;;; Author: Martin Grabmueller
|
|
;;; Date: 2001-06-06
|
|
|
|
(define-module (box-module))
|
|
|
|
(load-extension "libbox-module" "scm_init_box")
|