Is it possible to write a Haskell script that uses a module that is also going to be interpreted? Like, say: #!/usr/bin/runhaskell module Main (main) where import OtherModule main = (...) ---- where OtherModule is available in, say, OtherModule.hs and not in the already compiled and installed library? Thanks, Maurício