Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
120 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. ...