Tagged Questions
The runhaskell tag has no wiki summary.
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. ...