Making sure that it builds is annoying

This commit is contained in:
2023-05-20 17:22:43 +02:00
parent 7ac02ccb3c
commit 40ea83e76d
14 changed files with 250 additions and 136 deletions

6
app/Clash.hs Normal file
View File

@ -0,0 +1,6 @@
import Clash.Main (defaultMain)
import Prelude
import System.Environment (getArgs)
main :: IO ()
main = getArgs >>= defaultMain

6
app/Clashi.hs Normal file
View File

@ -0,0 +1,6 @@
import Clash.Main (defaultMain)
import Prelude
import System.Environment (getArgs)
main :: IO ()
main = getArgs >>= defaultMain . ("--interactive":)

View File

@ -1,8 +0,0 @@
module Main where
import qualified MyLib (someFunc)
main :: IO ()
main = do
putStrLn "Hello, Haskell!"
MyLib.someFunc