home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!spool.mu.edu!agate!anarres.CS.Berkeley.EDU!bh
- From: bh@anarres.CS.Berkeley.EDU (Brian Harvey)
- Newsgroups: comp.lang.scheme
- Subject: LOAD in what environment?
- Date: 15 Dec 1992 06:59:40 GMT
- Organization: University of California, Berkeley
- Lines: 10
- Distribution: world
- Message-ID: <1gjvosINN76m@agate.berkeley.edu>
- NNTP-Posting-Host: anarres.cs.berkeley.edu
-
- It's not clear to me from r4rs what happens if you call LOAD other than
- at toplevel. I'd like to be able to do a quick-and-dirty autoload by
- saying
-
- (define (foo . args)
- (load "foo.scm")
- (apply foo args))
-
- but I suspect that compiler writers would rather that I not be allowed
- to do that. Can anyone clarify this for me? Tnx.
-