Create cabal project

This commit is contained in:
Camden Dixie O'Brien 2021-01-01 00:00:40 +00:00
parent 5f97539997
commit a9fc4edabe
3 changed files with 20 additions and 0 deletions

4
Main.hs Normal file
View File

@ -0,0 +1,4 @@
module Main (main) where
main :: IO ()
main = putStrLn "Hello, Haskell!"

2
Setup.hs Normal file
View File

@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain

14
gloss-tryout.cabal Normal file
View File

@ -0,0 +1,14 @@
cabal-version: >=1.10
name: gloss-tryout
version: 0.1.0
license: ISC
license-file: LICENSE
author: Camden Dixie O'Brien
maintainer: cdo@wip.sh
build-type: Simple
executable gloss-tryout
main-is: Main.hs
build-depends: base, gloss
default-language: Haskell2010