initial
This commit is contained in:
parent
01b6f2d9de
commit
81ae1703f0
21
hello-world.cabal
Normal file
21
hello-world.cabal
Normal file
|
@ -0,0 +1,21 @@
|
|||
cabal-version: 1.12
|
||||
|
||||
name: hello-world
|
||||
version: 0.0.0.1
|
||||
license: MIT
|
||||
build-type: Simple
|
||||
|
||||
synopsis: example application
|
||||
description: an example application to test this repo's CI
|
||||
|
||||
author: Thorn Avery
|
||||
maintainer: ta@p7.co.nz
|
||||
|
||||
executable hello-world
|
||||
main-is: Main.hs
|
||||
hs-source-dirs:
|
||||
src
|
||||
build-depends:
|
||||
base
|
||||
, universe
|
||||
default-language: Haskell2010
|
4
src/Main.hs
Normal file
4
src/Main.hs
Normal file
|
@ -0,0 +1,4 @@
|
|||
import Universe.World (world)
|
||||
|
||||
main :: IO ()
|
||||
main = putStrLn ("Helo " ++ world ++ "!!!")
|
Loading…
Reference in a new issue