Tagged Questions

6
votes
1answer
141 views

How can I load a runhaskell script without a .hs extension with ghci?

I have written a script in haskell named testscript with the following code: #!/usr/bin/env runhaskell main = putStrLn "hello" After making the script executable, I can run it using ./testscript. ...