add haskell project structure

This commit is contained in:
Emile Clark-Boman 2025-09-03 01:01:45 +10:00
parent 25a164700c
commit 3c172ffeeb
2 changed files with 9 additions and 0 deletions

5
package.yaml Normal file
View file

@ -0,0 +1,5 @@
dependencies:
- base == 4.*
executables:
dorne:
main: src/Main.hs

4
src/Main.hs Normal file
View file

@ -0,0 +1,4 @@
module Main where
main :: IO ()
main = putStrLn "Goodbye world..."