You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initializing a project with a literate Main file does not compile. Cabal writes the same content for both a Main.hs and a Main.lhs file. Could we extend cabal such that it generates a valid Main.lhs file?
e.g.
> module Main where
> main :: IO ()
> main = putStrLn "Hello, Haskell!"