In the book I am working on, I am going to be limited to either 43 or 59 columns. Accordingly, this script interpreter opener isn't going to work on a single line:
-- stack --resolver lts-6.27 --install-ghc runghc --package aeson --package raw-strings-qq
Is there a way for me to split it across lines? \ didn't work.
Use a multiline haskell comment and write the comment whatever way you want.
{- stack
...
-}
Ah, perfect!
{-
stack --resolver lts-6.27 --install-ghc
runghc --package aeson
--package raw-strings-qq
-}
This worked great, thank you!
BTW, this was my first commit to stack a year ago!
Most helpful comment
BTW, this was my first commit to stack a year ago!