diff options
author | Ben Sima <ben@bsima.me> | 2023-08-02 10:38:22 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-08-02 10:42:54 -0400 |
commit | b154d6b3be99a4a9f5907c84645ca569183bb40e (patch) | |
tree | e23c313e1e83495a36159647a20c4c2ec4976707 /Biz/Bild/Example.hs | |
parent | 4cb9f2fbfbb124b38f19c72059620f25b71f92b7 (diff) |
Factor out nix builder into Haskell.nix
This also fixed a bug where every dependency would get pulled into the Haskell
target while searching for transitive dependencies.
Diffstat (limited to 'Biz/Bild/Example.hs')
-rw-r--r-- | Biz/Bild/Example.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Biz/Bild/Example.hs b/Biz/Bild/Example.hs index f812707..87472bb 100644 --- a/Biz/Bild/Example.hs +++ b/Biz/Bild/Example.hs @@ -1,5 +1,9 @@ +{-# LANGUAGE NoImplicitPrelude #-} + -- : out example module Biz.Bild.Example where +import Alpha + main :: IO () -main = print "hi" +main = putStrLn "Hello world" |