/usr/lib/s9fes/simple-module.scm is in scheme9 2010.11.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | ; Scheme 9 from Empty Space, Function Library
; By Nils M Holm, 2009
; See the LICENSE file of the S9fES package for terms of use
;
; (module <name> <definition> ...) ==> unspecific
; (import <name> (<name_i> ...) <expression> ...) ==> object
;
; (load-from-library "simple-module.scm")
;
; Simple modules. Inside of a MODULE expression, DEFINE defines
; a local object and DEFINE* defines a public object. <Name> names
; the module itself.
;
; Expressions inside of IMPORT may use all <name_i>'s that are
; being imported from the module <name>.
;
; Example: (begin ; Note: BEGIN is only needed for automatic testing
; (module math
; (define* (fact x)
; (if (= 0 x) 1 (* x (fact (- x 1))))))
; (import math (fact)
; (fact 5))) ==> 120
(load-from-library "syntax-rules.scm")
(define-syntax module
(syntax-rules (define define*)
((_ (m e))
(letrec e (list . m)))
((_ (m e) (define (n . a*) . body) . defs)
(module (m e) (define n (lambda a* . body)) . defs))
((_ (m e) (define n v) . defs)
(module (m ((n v) . e)) . defs))
((_ (m e) (define* (n . a*) . body) . defs)
(module (m e) (define* n (lambda a* . body)) . defs))
((_ (m e) (define* n v) . defs)
(module (((cons 'n v) . m) ((n v) . e)) . defs))
((_ n . defs)
(define n (module (() ()) . defs)))))
(define-syntax import
(syntax-rules ()
((_ (n e ()) . body)
(let e . body))
((_ (n e (i . r)) . body)
(import (n ((i (cdr (assq 'i n))) . e) r) . body))
((_ n (i . r) . body)
(import (n () (i . r)) . body))))
|