[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: require-library in a standalone Mzscheme script.




I tried three things: 

1. In DrScheme 
   language: MzScheme
   def wind: 
   (require-library "file.ss")
   execute 

2. In MzScheme 

   europa.rice.edu 1> mzscheme
   Welcome to MzScheme version 101, Copyright (c) 1995-99 PLT (Matthew Flatt)
   > (require-library "file.ss")
   > 

3. In MzScheme -r: 

   create foo.ss:
   (require-library "file.ss")
   (printf "hello world~n")

   then

   europa.rice.edu 3> mzscheme -r foo.ss
   hello world
   europa.rice.edu 4> 

All three behave identically (require-library's evaluation terminates,
and the next expression is okay). Could you describe your problem in more
detail? 

-- Matthias